From: Lenny Maiorani Date: Thu, 31 Mar 2011 21:26:55 +0000 (+0000) Subject: Fix spelling in a comment. (test commit) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea4411e3eee3f86e5d9ebb5caa7fdc025ca3a515;p=clang Fix spelling in a comment. (test commit) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128670 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp b/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp index e037cd315e..8b1756937e 100644 --- a/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp +++ b/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp @@ -326,7 +326,7 @@ void WalkAST::CheckCall_mktemp(const CallExpr *CE, const FunctionDecl *FD) { if(!FPT) return; - // Verify that the funcion takes a single argument. + // Verify that the function takes a single argument. if (FPT->getNumArgs() != 1) return;