From 7ab178a29a159bdc3674017886ba295af548ecb3 Mon Sep 17 00:00:00 2001 From: James Dennett Date: Wed, 5 Aug 2015 20:58:23 +0000 Subject: [PATCH] Documentation: fix another typo, "arrays types" -> "array types". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to Kim Gräsman for pointing this out. llvm-svn: 244124 --- clang/include/clang/AST/PrettyPrinter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/PrettyPrinter.h b/clang/include/clang/AST/PrettyPrinter.h index a95bcbbdd194..f269fb1bf2e5 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];