diff options
author | Owen Pan <owenpiano@gmail.com> | 2023-12-29 19:47:08 -0800 |
---|---|---|
committer | Owen Pan <owenpiano@gmail.com> | 2023-12-29 19:47:08 -0800 |
commit | ca8441d6dbd36003288ef412295e7b946a8bb893 (patch) | |
tree | 8f159fad088408409152e273348d4fc063ca042e /clang | |
parent | 09308122c6c0fa9eb3d729a2b2909733cbbc2160 (diff) | |
download | llvm-ca8441d6dbd36003288ef412295e7b946a8bb893.zip llvm-ca8441d6dbd36003288ef412295e7b946a8bb893.tar.gz llvm-ca8441d6dbd36003288ef412295e7b946a8bb893.tar.bz2 |
[clang-format][NFC] Fix a typo.
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Format/MatchFilePath.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Format/MatchFilePath.cpp b/clang/lib/Format/MatchFilePath.cpp index 412ee49..062b334d 100644 --- a/clang/lib/Format/MatchFilePath.cpp +++ b/clang/lib/Format/MatchFilePath.cpp @@ -19,8 +19,8 @@ using namespace llvm; namespace clang { namespace format { -// Check whether `FilePath` matches `Pattern` based on POSIX (1003.1-2008) -// 2.13.1, 2.13.2, and Rule 1 of 2.13.3. +// Check whether `FilePath` matches `Pattern` based on POSIX 2.13.1, 2.13.2, and +// Rule 1 of 2.13.3. bool matchFilePath(StringRef Pattern, StringRef FilePath) { assert(!Pattern.empty()); assert(!FilePath.empty()); |