aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
diff options
context:
space:
mode:
authorZentrik <Zentrik@users.noreply.github.com>2024-04-08 10:18:59 +0100
committerGitHub <noreply@github.com>2024-04-08 11:18:59 +0200
commitcf7d36fe342c5c5ac39150ca0b4b70a3d17ae66b (patch)
tree4005f3015dbdabfc84a8dd9b3464537084b25d1a /clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
parent221f438af1c1292d787b58da99a5a7b371888456 (diff)
downloadllvm-cf7d36fe342c5c5ac39150ca0b4b70a3d17ae66b.zip
llvm-cf7d36fe342c5c5ac39150ca0b4b70a3d17ae66b.tar.gz
llvm-cf7d36fe342c5c5ac39150ca0b4b70a3d17ae66b.tar.bz2
[NFC] Fix misspellings of effects (#87795)
Diffstat (limited to 'clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
index 6cc8867..845a5f9 100644
--- a/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
@@ -30,7 +30,7 @@
// was not consciously intended, and therefore it might have been unreachable.
//
// This checker uses eval::Call for modeling pure functions (functions without
-// side effets), for which their `Summary' is a precise model. This avoids
+// side effects), for which their `Summary' is a precise model. This avoids
// unnecessary invalidation passes. Conflicts with other checkers are unlikely
// because if the function has no other effects, other checkers would probably
// never want to improve upon the modeling done by this checker.