From 0d06f0b4fd19e84e9f9a5d4232a0418d956d8659 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Fri, 2 May 2014 18:12:30 +0000 Subject: [PATCH] Fix bad comment from r207573. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@207854 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/ScanfFormatString.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.40.0