diff options
Diffstat (limited to 'clang/lib/Tooling/FileMatchTrie.cpp')
-rw-r--r-- | clang/lib/Tooling/FileMatchTrie.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Tooling/FileMatchTrie.cpp b/clang/lib/Tooling/FileMatchTrie.cpp index 248d4e247f2..3e7c70e1952 100644 --- a/clang/lib/Tooling/FileMatchTrie.cpp +++ b/clang/lib/Tooling/FileMatchTrie.cpp @@ -91,7 +91,7 @@ public: /// /// To find the best matching node for a given path 'p', the /// \c findEquivalent() function is called recursively for each path segment - /// (back to fron) of 'p' until a node 'n' is reached that does not .. + /// (back to front) of 'p' until a node 'n' is reached that does not .. /// - .. have children. In this case it is checked /// whether the stored path is equivalent to 'p'. If yes, the best match is /// found. Otherwise continue with the parent node as if this node did not |