diff options
author | Stephan T. Lavavej <stl@microsoft.com> | 2019-10-22 15:19:40 -0700 |
---|---|---|
committer | Stephan T. Lavavej <stl@microsoft.com> | 2019-10-22 15:22:13 -0700 |
commit | 437e0e5191ca255db27e86d232020844c1fd08c8 (patch) | |
tree | f7d291d2124d45a27f4825c61f4b0008df693ea7 /libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp | |
parent | 19e95ab4210bedf36f0f50d54c39e8f7f4d879f2 (diff) | |
download | bcm5719-llvm-437e0e5191ca255db27e86d232020844c1fd08c8.tar.gz bcm5719-llvm-437e0e5191ca255db27e86d232020844c1fd08c8.zip |
[libcxx][test][NFC] Fix comment typos.
(Testing git commit access.)
Diffstat (limited to 'libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp b/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp index 4fca6e0479c..7be023f463e 100644 --- a/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp +++ b/libcxx/test/std/utilities/optional/optional.specalg/swap.pass.cpp @@ -91,7 +91,7 @@ void test_swap_sfinae() { static_assert(!std::is_swappable_v<optional<T>>, ""); } { - // Even thought CopyOnly has deleted move operations, those operations + // Even though CopyOnly has deleted move operations, those operations // cause optional<CopyOnly> to have implicitly deleted move operations // that decay into copies. using T = TestTypes::CopyOnly; |