From: Anna Zaks Date: Wed, 3 Apr 2013 19:28:05 +0000 (+0000) Subject: [analyzer] Fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d3fb9078f0112fa51d8d9862221f5544c5c80e7;p=clang [analyzer] Fix typo. Thanks Jordan! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178683 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/StaticAnalyzer/Core/RegionStore.cpp b/lib/StaticAnalyzer/Core/RegionStore.cpp index 514fe256cd..0f4a6824a2 100644 --- a/lib/StaticAnalyzer/Core/RegionStore.cpp +++ b/lib/StaticAnalyzer/Core/RegionStore.cpp @@ -1087,7 +1087,7 @@ void RegionStoreManager::populateWorkList(invalidateRegionsWorker &W, for (SValListTy::const_iterator I = Vals.begin(), E = Vals.end(); I != E; ++I) { - // Note: the last argumet is false here because these are + // Note: the last argument is false here because these are // non-top-level regions. if (const MemRegion *R = (*I).getAsRegion()) W.AddToWorkList(R, /*IsConst=*/ false);