CMakeLists.txt: add a missing "and" to a comment
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3d20d24..e27e198 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -577,9 +577,9 @@
     )
     target_link_libraries(avif_apps avif ${AVIF_PLATFORM_LIBRARIES} ${PNG_LIBRARY} ${ZLIB_LIBRARY} ${JPEG_LIBRARY})
     # In GitHub CI's macos-latest os image, /usr/local/include has not only the headers of libpng
-    # libjpeg but also the headers of an older version of libavif. Put the avif include directory
-    # before ${PNG_PNG_INCLUDE_DIR} ${JPEG_INCLUDE_DIR} to prevent picking up old libavif headers
-    # from /usr/local/include.
+    # and libjpeg but also the headers of an older version of libavif. Put the avif include
+    # directory before ${PNG_PNG_INCLUDE_DIR} ${JPEG_INCLUDE_DIR} to prevent picking up old libavif
+    # headers from /usr/local/include.
     target_include_directories(
         avif_apps PRIVATE $<TARGET_PROPERTY:avif,INTERFACE_INCLUDE_DIRECTORIES> ${PNG_PNG_INCLUDE_DIR} ${JPEG_INCLUDE_DIR}
         INTERFACE apps/shared