[clang] 3a7a465 - [analyzer][docs] Fix typo in checker name
Balazs Benics via cfe-commits
cfe-commits at lists.llvm.org
Fri May 27 01:08:05 PDT 2022
Author: Balazs Benics
Date: 2022-05-27T10:07:06+02:00
New Revision: 3a7a465def4a7faae41467893276910b1faa6152
URL: https://github.com/llvm/llvm-project/commit/3a7a465def4a7faae41467893276910b1faa6152
DIFF: https://github.com/llvm/llvm-project/commit/3a7a465def4a7faae41467893276910b1faa6152.diff
LOG: [analyzer][docs] Fix typo in checker name
Fixes #55720
Added:
Modified:
clang/docs/analyzer/checkers.rst
Removed:
################################################################################
diff --git a/clang/docs/analyzer/checkers.rst b/clang/docs/analyzer/checkers.rst
index 2fff6e0a63942..6a73e66b0daaa 100644
--- a/clang/docs/analyzer/checkers.rst
+++ b/clang/docs/analyzer/checkers.rst
@@ -947,9 +947,9 @@ Check the size argument passed into C string functions for common erroneous patt
// warn: potential buffer overflow
}
-.. _unix-cstrisng-NullArg:
+.. _unix-cstring-NullArg:
-unix.cstrisng.NullArg (C)
+unix.cstring.NullArg (C)
"""""""""""""""""""""""""
Check for null pointers being passed as arguments to C string functions:
``strlen, strnlen, strcpy, strncpy, strcat, strncat, strcmp, strncmp, strcasecmp, strncasecmp``.
More information about the cfe-commits
mailing list