From: Hans Wennborg Date: Fri, 2 May 2014 18:12:30 +0000 (+0000) Subject: Fix bad comment from r207573. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d06f0b4fd19e84e9f9a5d4232a0418d956d8659;p=clang Fix bad comment from r207573. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207854 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScanfFormatString.cpp b/lib/Analysis/ScanfFormatString.cpp index 18505e263b..32d35cde2f 100644 --- a/lib/Analysis/ScanfFormatString.cpp +++ b/lib/Analysis/ScanfFormatString.cpp @@ -50,7 +50,7 @@ static bool ParseScanList(FormatStringHandler &H, } } - // Special case: "]^" are the first characters. + // Special case: "^]" are the first characters. if (I + 1 != E && I[0] == '^' && I[1] == ']') { I += 2; if (I == E) {