Skip to content

Commit 76dba2e

Browse files
authored
[libcxx] Fix a comment link for the unicode NBSP char. NFC. (llvm#139692)
1 parent 70a3a1b commit 76dba2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/src/locale.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3957,7 +3957,7 @@ static bool is_narrow_non_breaking_space(const char* ptr) {
39573957
}
39583958

39593959
static bool is_non_breaking_space(const char* ptr) {
3960-
// https://www.fileformat.info/info/unicode/char/0a/index.htm
3960+
// https://www.fileformat.info/info/unicode/char/a0/index.htm
39613961
return ptr[0] == '\xc2' && ptr[1] == '\xa0';
39623962
}
39633963
#endif // _LIBCPP_HAS_WIDE_CHARACTERS

0 commit comments

Comments
 (0)