Skip to content

Commit ac61659

Browse files
committed
Fix small error in comment
1 parent 45502cd commit ac61659

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

httplibConfig.cmake.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ find_dependency(Threads REQUIRED)
88
if(@HTTPLIB_REQUIRE_OPENSSL@)
99
find_dependency(OpenSSL @_HTTPLIB_OPENSSL_MIN_VER@ REQUIRED)
1010
elseif(@HTTPLIB_USE_OPENSSL_IF_AVAILABLE@)
11-
# Look quietly since it's optional are optional
11+
# Look quietly since it's optional
1212
find_dependency(OpenSSL @_HTTPLIB_OPENSSL_MIN_VER@ QUIET)
1313
endif()
1414
if(@HTTPLIB_REQUIRE_ZLIB@)
1515
find_dependency(ZLIB REQUIRED)
1616
elseif(@HTTPLIB_USE_ZLIB_IF_AVAILABLE@)
17+
# Look quietly since it's optional
1718
find_dependency(ZLIB QUIET)
1819
endif()
1920

0 commit comments

Comments
 (0)