diff options
author | JF Bastien <jfbastien@apple.com> | 2019-02-12 20:19:16 +0000 |
---|---|---|
committer | JF Bastien <jfbastien@apple.com> | 2019-02-12 20:19:16 +0000 |
commit | b9723bc882d53c35f7d63897e1c1173f153f736d (patch) | |
tree | 5620d94260663cd3080e1ef48c493d46b3def56b | |
parent | d9bd5b5979a76368b5768c60e80a587580a7147c (diff) | |
download | clang-b9723bc882d53c35f7d63897e1c1173f153f736d.tar.gz |
[NFC] typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@353875 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Decl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index 933166691a..526e2107af 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -3851,7 +3851,7 @@ public: static bool classofKind(Kind K) { return K == FileScopeAsm; } }; -/// Pepresents a block literal declaration, which is like an +/// Represents a block literal declaration, which is like an /// unnamed FunctionDecl. For example: /// ^{ statement-body } or ^(int arg1, float arg2){ statement-body } class BlockDecl : public Decl, public DeclContext { |