diff --git a/doc/hash_equality.qbk b/doc/hash_equality.qbk index 4a24eefe..509ed783 100644 --- a/doc/hash_equality.qbk +++ b/doc/hash_equality.qbk @@ -8,7 +8,7 @@ While the associative containers use an ordering relation to specify how the elements are stored, the unordered associative containers use an equality -predicate and a hash function. For example [classref boost::unordered_set] +predicate and a hash function. For example, [classref boost::unordered_set] is declared as: template words; @@ -31,7 +29,7 @@ An example implementation of FNV-1, and some other hash functions are supplied in the examples directory. Alternatively, you might wish to use a different equality function. If so, make -sure you use a hash function that matches it. For example, a +sure you use a hash function that matches it. So to implement a case-insensitive dictionary: struct iequal_to @@ -66,7 +64,7 @@ case-insensitive dictionary: boost::unordered_map idictionary; -A more generic version of this example is available at: +A more generic version is available at: [@../../libs/unordered/examples/case_insensitive.hpp /libs/unordered/examples/case_insensitive.hpp] [h2 Custom Types]