[llvm-commits] [llvm] r109995 - /llvm/trunk/docs/ProgrammersManual.html

Nick Lewycky nicholas at mxc.ca
Sun Aug 1 16:18:45 PDT 2010


Author: nicholas
Date: Sun Aug  1 18:18:45 2010
New Revision: 109995

URL: http://llvm.org/viewvc/llvm-project?rev=109995&view=rev
Log:
Fix word choice.

Modified:
    llvm/trunk/docs/ProgrammersManual.html

Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=109995&r1=109994&r2=109995&view=diff
==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Sun Aug  1 18:18:45 2010
@@ -1436,7 +1436,7 @@
 
 <p>The StringMap is very fast for several reasons: quadratic probing is very
 cache efficient for lookups, the hash value of strings in buckets is not
-recomputed when lookup up an element, StringMap rarely has to touch the
+recomputed when looking up an element, StringMap rarely has to touch the
 memory for unrelated objects when looking up a value (even when hash collisions
 happen), hash table growth does not recompute the hash values for strings
 already in the table, and each pair in the map is store in a single allocation





More information about the llvm-commits mailing list