[libc++] NFC: fix typos
authorLouis Dionne <ldionne@apple.com>
Fri, 1 May 2020 17:10:06 +0000 (13:10 -0400)
committerLouis Dionne <ldionne@apple.com>
Fri, 1 May 2020 17:10:30 +0000 (13:10 -0400)
libcxx/cmake/Modules/HandleLibCXXABI.cmake
libcxx/test/std/strings/basic.string/string.cons/implicit_deduction_guides.pass.cpp
libcxx/test/std/strings/string.view/string.view.cons/implicit_deduction_guides.pass.cpp

index a62efc0..973d875 100644 (file)
@@ -122,11 +122,11 @@ elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "libcxxrt")
     "cxxrt" "cxxrt" "cxxabi.h;unwind.h;unwind-arm.h;unwind-itanium.h" ""
     )
 elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "vcruntime")
- # Nothing TODO
+ # Nothing to do
 elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "none")
   list(APPEND LIBCXX_COMPILE_FLAGS "-D_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY")
 elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "default")
-  # Nothing TODO
+  # Nothing to do
 else()
   message(FATAL_ERROR
     "Unsupported c++ abi: '${LIBCXX_CXX_ABI_LIBNAME}'. \
index 82bd71b..3eda844 100644 (file)
@@ -50,7 +50,7 @@ int main(int, char**)
 {
   using TestSizeT = test_allocator<char>::size_type;
   { // Testing (1)
-    // Nothing TODO. Cannot deduce without any arguments.
+    // Nothing to do. Cannot deduce without any arguments.
   }
   { // Testing (2)
     // This overload isn't compatible with implicit deduction guides as
index 9cea8c6..db6d0d0 100644 (file)
@@ -29,7 +29,7 @@
 int main(int, char**)
 {
   { // Testing (1)
-    // Nothing TODO. Cannot deduce without any arguments.
+    // Nothing to do. Cannot deduce without any arguments.
   }
   { // Testing (2)
     const std::string_view sin("abc");