summaryrefslogtreecommitdiffstats
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-03 20:17:53 +0000
committerChris Lattner <sabre@nondot.org>2007-02-03 20:17:53 +0000
commita4a264de3ba9df2c9043fed89e08da9f8f92217e (patch)
treec568ebdb063d3b2703f39c8257140b06d6d6f8fa /docs/ProgrammersManual.html
parent2b78d967ea35ff0f4b501e7024cd5e36ca7e5940 (diff)
downloadexternal_llvm-a4a264de3ba9df2c9043fed89e08da9f8f92217e.zip
external_llvm-a4a264de3ba9df2c9043fed89e08da9f8f92217e.tar.gz
external_llvm-a4a264de3ba9df2c9043fed89e08da9f8f92217e.tar.bz2
fix grammar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index ed81a73..022d50b 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1187,11 +1187,11 @@ pointers, or map other small types to each other.
There are several aspects of DenseMap that you should be aware of, however. The
iterators in a densemap are invalidated whenever an insertion occurs, unlike
map. Also, because DenseMap allocates space for a large number of key/value
-pairs (it starts with 64 by default) if you have large keys or values, it can
-waste a lot of space. Finally, you must implement a partial specialization of
+pairs (it starts with 64 by default), it will waste a lot of space if your keys
+or values are large. Finally, you must implement a partial specialization of
DenseMapKeyInfo for the key that you want, if it isn't already supported. This
is required to tell DenseMap about two special marker values (which can never be
-inserted into the map).</p>
+inserted into the map) that it needs internally.</p>
</div>