diff options
author | Jake Vossen <jake@vossen.dev> | 2021-06-08 12:32:05 -0400 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2021-06-08 12:32:56 -0400 |
commit | 71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5 (patch) | |
tree | 145ae02a5818ccc0cd340500f71dd1fb368e43c3 | |
parent | c57bce9cc5facbdde52c24fe64fa4f6bf23a8449 (diff) | |
download | llvm-71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5.zip llvm-71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5.tar.gz llvm-71fb98e0c1de97c8ba2aa3292447b0c5d0f248d5.tar.bz2 |
Fix a typo in the internals manual
-rw-r--r-- | clang/docs/InternalsManual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/InternalsManual.rst b/clang/docs/InternalsManual.rst index b5f3e41..ddc873c 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 |