Skip to content

Commit

Permalink
[libc++] Remove U+2009 THIN SPACE from comments in tests. NFC.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quuxplusone committed Feb 14, 2022
1 parent fc3923f commit 35d4b48
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
{"/", "/"},
{"//", "/"},
{"///", "/"},
Expand Down Expand Up @@ -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/../..", "/"},
Expand Down

0 comments on commit 35d4b48

Please sign in to comment.