summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-03 22:04:27 +0000
committerChris Lattner <sabre@nondot.org>2007-02-03 22:04:27 +0000
commite3683e16519b0fe412f97c706ecdd4eb71dde74c (patch)
treebf6d81161c2d5a611304c7a17589a1dbac499959 /docs/ProgrammersManual.html
parent128a7a7a4a3bd67f444dd172731675700da846b0 (diff)
downloadllvm-e3683e16519b0fe412f97c706ecdd4eb71dde74c.tar.gz
llvm-e3683e16519b0fe412f97c706ecdd4eb71dde74c.tar.bz2
llvm-e3683e16519b0fe412f97c706ecdd4eb71dde74c.tar.xz
null -> pointer, nul -> character :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33841 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 4f91254e40..8e61b179f0 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -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