null -> pointer, nul -> character :)
authorChris Lattner <sabre@nondot.org>
Sat, 3 Feb 2007 22:04:27 +0000 (22:04 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 3 Feb 2007 22:04:27 +0000 (22:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33841 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html

index 4f91254e402d5a6e298b08aa2796a26b9611788f..8e61b179f0e8aa1c7ffa3a3911f9690f514ce31c 100644 (file)
@@ -1126,7 +1126,7 @@ Strings are commonly used as keys in maps, and they are difficult to support
 efficiently: they are variable length, inefficient to hash and compare when
 long, expensive to copy, etc.  CStringMap is a specialized container designed to
 cope with these issues.  It supports mapping an arbitrary range of bytes that
-does not have an embedded null character in it ("C strings") to an arbitrary
+does not have an embedded nul character in it ("C strings") to an arbitrary
 other object.</p>
 
 <p>The CStringMap implementation uses a quadratically-probed hash table, where