diff options
author | James Dennett <jdennett@google.com> | 2015-08-05 20:58:23 +0000 |
---|---|---|
committer | James Dennett <jdennett@google.com> | 2015-08-05 20:58:23 +0000 |
commit | 7ab178a29a159bdc3674017886ba295af548ecb3 (patch) | |
tree | 1c507a2a759fa2510a38bbedb29000f84fa8e3eb | |
parent | dc8bd82768c4a22bcd553d03876ecd39e0012385 (diff) | |
download | bcm5719-llvm-7ab178a29a159bdc3674017886ba295af548ecb3.tar.gz bcm5719-llvm-7ab178a29a159bdc3674017886ba295af548ecb3.zip |
Documentation: fix another typo, "arrays types" -> "array types".
Thanks to Kim Gräsman <kim.grasman@gmail.com> for pointing this out.
llvm-svn: 244124
-rw-r--r-- | clang/include/clang/AST/PrettyPrinter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/PrettyPrinter.h b/clang/include/clang/AST/PrettyPrinter.h index a95bcbbdd19..f269fb1bf2e 100644 --- a/clang/include/clang/AST/PrettyPrinter.h +++ b/clang/include/clang/AST/PrettyPrinter.h @@ -109,7 +109,7 @@ struct PrintingPolicy { /// \brief Whether we should print the sizes of constant array expressions /// as written in the sources. /// - /// This flag determines whether arrays types declared as + /// This flag determines whether array types declared as /// /// \code /// int a[4+10*10]; |