Skip to content
Snippets Groups Projects
Commit 9d6b1cb1 authored by Fariborz Jahanian's avatar Fariborz Jahanian
Browse files

[doc parsing]: don't attempt to fix single character

commands (\t \n are common). \\ rdar://12381408 


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181517 91177308-0d34-0410-b5e6-96231b3b80d8
parent ee3cd95d
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,10 @@ HelperTypoCorrectCommandInfo(SmallVectorImpl<const CommandInfo *> &BestCommand,
const unsigned MaxEditDistance = 1;
unsigned BestEditDistance = MaxEditDistance + 1;
StringRef Name = Command->Name;
// Don't attempt trying to typo fix single character commands.
// \t and \n are very common
if (Name.size() <= 1)
return;
unsigned MinPossibleEditDistance = abs((int)Name.size() - (int)Typo.size());
if (MinPossibleEditDistance > 0 &&
......
......@@ -67,6 +67,9 @@ int FooBar();
/// \fooba bbb IS_DOXYGEN_END
int gorf();
/// \t bbb IS_DOXYGEN_END
int Bar();
// CHECK: fix-it:"{{.*}}":{5:12-5:22}:"a"
// CHECK: fix-it:"{{.*}}":{9:12-9:15}:"aaa"
// CHECK: fix-it:"{{.*}}":{13:13-13:23}:"T"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment