summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Loo Rong Jie <loorongjie@gmail.com>2018-10-10 23:20:24 +0800
committerGravatar Loo Rong Jie <loorongjie@gmail.com>2018-10-10 23:20:24 +0800
commitf59e0f1d089d647bdc441a20a2bea10963c0e5a7 (patch)
tree8e3c04d1d6528fa2d55dcf1c9a86c888c9982385
parentfc2185a7f42aa244d716fff7563e241d797d0fed (diff)
Update comments too
-rw-r--r--CMake/AbseilHelpers.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMake/AbseilHelpers.cmake b/CMake/AbseilHelpers.cmake
index 1f33fd76..a376721e 100644
--- a/CMake/AbseilHelpers.cmake
+++ b/CMake/AbseilHelpers.cmake
@@ -99,8 +99,8 @@ endfunction()
# absl_internal_awesome_lib # not "awesome_lib"!
# )
#
-# If PUBLIC is set, absl_cc_library will also create an alias absl::${NAME}
-# for public use in addition to absl_internal_${NAME}.
+# If PUBLIC is set, absl_cc_library will instead create a target named
+# absl_${NAME} and an alias absl::${NAME}.
#
# absl_cc_library(
# NAME
@@ -109,7 +109,7 @@ endfunction()
# PUBLIC
# )
#
-# User can then use the library as absl::main_lib (although absl_internal_main_lib is defined too).
+# User can then use the library as absl::main_lib (although absl_main_lib is defined too).
#
# TODO: Implement "ALWAYSLINK"