From: James Dennett Date: Wed, 5 Aug 2015 20:58:23 +0000 (+0000) Subject: Documentation: fix another typo, "arrays types" -> "array types". X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1553ace066fa8acf7bbb445f2f6f8fa5c7f0ffc2;p=clang Documentation: fix another typo, "arrays types" -> "array types". Thanks to Kim Gräsman for pointing this out. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244124 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/PrettyPrinter.h b/include/clang/AST/PrettyPrinter.h index a95bcbbdd1..f269fb1bf2 100644 --- a/include/clang/AST/PrettyPrinter.h +++ b/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];