[clang] 71fb98e - Fix a typo in the internals manual
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 8 09:33:07 PDT 2021
Author: Jake Vossen
Date: 2021-06-08T12:32:56-04:00
New Revision: 71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5
URL: https://github.com/llvm/llvm-project/commit/71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5
DIFF: https://github.com/llvm/llvm-project/commit/71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5.diff
LOG: Fix a typo in the internals manual
Added:
Modified:
clang/docs/InternalsManual.rst
Removed:
################################################################################
diff --git a/clang/docs/InternalsManual.rst b/clang/docs/InternalsManual.rst
index b5f3e4166d38b..ddc873c253e74 100644
--- a/clang/docs/InternalsManual.rst
+++ b/clang/docs/InternalsManual.rst
@@ -2830,7 +2830,7 @@ semantic) type, or one of its derivatives. Most attributes will derive from the
later redeclarations of the ``Decl`` it is associated with.
``InheritableParamAttr`` is similar to ``InheritableAttr``, except that the
attribute is written on a parameter instead of a declaration. If the attribute
-applies to statements, it should inherit from ``StmtAttr`. If the attribute is
+applies to statements, it should inherit from ``StmtAttr``. If the attribute is
intended to apply to a type instead of a declaration, such an attribute should
derive from ``TypeAttr``, and will generally not be given an AST representation.
(Note that this document does not cover the creation of type attributes.) An
More information about the cfe-commits
mailing list