From 35d4b4865443e584652841d548e12d7582da9243 Mon Sep 17 00:00:00 2001 From: Arthur O'Dwyer Date: Mon, 14 Feb 2022 10:30:36 -0500 Subject: [PATCH] [libc++] Remove U+2009 THIN SPACE from comments in tests. NFC. --- .../path.member/path.gen/lexically_normal.pass.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp index e2cdb365dd88..42de65e40339 100644 --- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp +++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp @@ -74,9 +74,9 @@ int main(int, char**) { // separator. {"NO_ROOT_NAME_ON_LINUX", "NO_ROOT_NAME_ON_LINUX"}, // p3: Replace each directory-separator with a preferred-separator. - // [ Note: The generic pathname grammar ([fs.path.generic]) defines + // [ Note: The generic pathname grammar ([fs.path.generic]) defines // directory-separator as one or more slashes and preferred-separators. - // — end note ] + // — end note ] {"/", "/"}, {"//", "/"}, {"///", "/"}, @@ -107,8 +107,8 @@ int main(int, char**) { {"foo/bar/./..", "foo/"}, {"foo/bar/./../", "foo/"}, // p6: If there is a root-directory, remove all dot-dot filenames and any - // directory-separators immediately following them. [ Note: These dot-dot - // filenames attempt to refer to nonexistent parent directories. — end note ] + // directory-separators immediately following them. [ Note: These dot-dot + // filenames attempt to refer to nonexistent parent directories. — end note ] {"/..", "/"}, {"/../", "/"}, {"/foo/../..", "/"},