aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-10 18:35:31 +0000
committerChris Lattner <sabre@nondot.org>2007-02-10 18:35:31 +0000
commit5da59b1fe2d12060c9a40dff7a7c22e2ac96c9bb (patch)
treee0f632d1f8780d5de72bbfc5e7b0a1cede9a3853 /docs
parentead1aead1e882085f278db39e6d52cc11bc48f5a (diff)
downloadexternal_llvm-5da59b1fe2d12060c9a40dff7a7c22e2ac96c9bb.zip
external_llvm-5da59b1fe2d12060c9a40dff7a7c22e2ac96c9bb.tar.gz
external_llvm-5da59b1fe2d12060c9a40dff7a7c22e2ac96c9bb.tar.bz2
fix a grammar ambiguity noticed by Duncan
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CodingStandards.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html
index 8f210aa..fd27985 100644
--- a/docs/CodingStandards.html
+++ b/docs/CodingStandards.html
@@ -456,7 +456,8 @@ most cases, you simply don't need the definition of a class... and not
<tt>#include</tt>'ing speeds up compilation.</p>
<p>It is easy to try to go too overboard on this recommendation, however. You
-<b>must</b> include all of the header files that you are using, either directly
+<b>must</b> include all of the header files that you are using -- you can
+include them either directly
or indirectly (through another header file). To make sure that you don't
accidently forget to include a header file in your module header, make sure to
include your module header <b>first</b> in the implementation file (as mentioned