From 802df13e4dbe8c34fed513f216e988c3c3186849 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. llvm-svn: 207854 --- clang/lib/Analysis/ScanfFormatString.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Analysis/ScanfFormatString.cpp b/clang/lib/Analysis/ScanfFormatString.cpp index 18505e263bef..32d35cde2ff7 100644 --- a/clang/lib/Analysis/ScanfFormatString.cpp +++ b/clang/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) {