Spell check the unordered container quickbook files.

[SVN r41123]
This commit is contained in:
Daniel James
2007-11-15 23:36:33 +00:00
parent a42f9ba834
commit 29a0e5d163
5 changed files with 15 additions and 15 deletions

View File

@@ -8,8 +8,8 @@
[[Associative Containers] [Unordered Associative Containers]]
[
[Parameterized by an ordering relation `Compare`]
[Parameterized by a function object `Hash` and an equivalence relation
[Parametrised by an ordering relation `Compare`]
[Parametrised by a function object `Hash` and an equivalence relation
`Pred`]
]
[
@@ -51,7 +51,7 @@
element can be inserted into a different bucket.]
]
[
[`iterator`, `const_iterator` are of the biderctional category.]
[`iterator`, `const_iterator` are of the bidirectional category.]
[`iterator`, `const_iterator` are of at least the forward category.]
]
[
@@ -108,7 +108,7 @@
]
[
[Insert a single element with a hint]
[Amortized constant if t elements inserted right after hint,
[Amortised constant if t elements inserted right after hint,
logarithmic otherwise]
[Average case constant, worst case linear (ie. the same as
a normal insert).]
@@ -125,7 +125,7 @@
]
[
[Erase a single element by iterator]
[Amortized constant]
[Amortised constant]
[Average case: O(1), Worst case: O(`size()`)]
]
[