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/input.output/filesystems/fs.op.funcs | |
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/input.output/filesystems/fs.op.funcs')
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp index dda88f0fa0a..cd3c133e090 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.relative/relative.pass.cpp @@ -66,7 +66,7 @@ TEST_CASE(test_signature_5) { TEST_CASE(test_signature_6) { // FIXME? If the trailing separator occurs in a part of the path that exists, - // it is ommitted. Otherwise it is added to the end of the result. + // it is omitted. Otherwise it is added to the end of the result. fs::path p(StaticEnv::SymlinkToDir / "dir2/./"); const fs::path output = fs::weakly_canonical(p); TEST_CHECK(output == std::string(StaticEnv::Dir / "dir2")); diff --git a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp index 30e3a84ec2a..ed9105652c9 100644 --- a/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.weakly_canonical/weakly_canonical.pass.cpp @@ -45,7 +45,7 @@ int main(int, char**) { {StaticEnv::SymlinkToDir, StaticEnv::Dir}, {StaticEnv::SymlinkToDir / "dir2/.", StaticEnv::Dir / "dir2"}, // FIXME? If the trailing separator occurs in a part of the path that exists, - // it is ommitted. Otherwise it is added to the end of the result. + // it is omitted. Otherwise it is added to the end of the result. {StaticEnv::SymlinkToDir / "dir2/./", StaticEnv::Dir / "dir2"}, {StaticEnv::SymlinkToDir / "dir2/DNE/./", StaticEnv::Dir / "dir2/DNE/"}, {StaticEnv::SymlinkToDir / "dir2", StaticEnv::Dir2}, |