From 265345fc653a2a75905a7060f12bb87f19867ef9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 3 Feb 2007 22:04:27 +0000 Subject: [PATCH] null -> pointer, nul -> character :) llvm-svn: 33841 --- llvm/docs/ProgrammersManual.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 4f91254e402d..8e61b179f0e8 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/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.

The CStringMap implementation uses a quadratically-probed hash table, where