fix grammar
authorChris Lattner <sabre@nondot.org>
Sat, 3 Feb 2007 20:17:53 +0000 (20:17 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 3 Feb 2007 20:17:53 +0000 (20:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33839 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html

index ed81a734c0a656af00a38f4779dfe11e379faa23..022d50bb68f7dc05f15d2ae18090e33d620c1fab 100644 (file)
@@ -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
 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
 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>
 
 
 </div>