[clang-tody] Fix typos in documentation
authorKazu Hirata <kazu@google.com>
Fri, 26 May 2023 05:56:06 +0000 (22:56 -0700)
committerKazu Hirata <kazu@google.com>
Fri, 26 May 2023 05:56:06 +0000 (22:56 -0700)
clang-tools-extra/docs/clang-tidy/checks/bugprone/signal-handler.rst
clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/prefer-member-initializer.rst

index 8a11924..658b655 100644 (file)
@@ -20,7 +20,7 @@ Checked signal handler rules for up to and including C++14:
 
 The check is disabled on C++17 and later.
 
-Asnychronous-safety is determined by comparing the function's name against a set
+Asynchronous-safety is determined by comparing the function's name against a set
 of known functions. In addition, the function must come from a system header
 include and in a global namespace. The (possible) arguments passed to the
 function are not checked. Any function that cannot be determined to be
index 803cdbd..7381111 100644 (file)
@@ -28,7 +28,7 @@ see check `modernize-use-default-member-init <../modernize/use-default-member-in
   Enforcement of rule C.48 in this check is deprecated, to be removed in
   :program:`clang-tidy` version 19 (only C.49 will be enforced by this check then).
   Please use `cppcoreguidelines-use-default-member-init <../cppcoreguidelines/use-default-member-init.html>`_
-  to enfoce rule C.48.
+  to enforce rule C.48.
 
 Example 1
 ---------