Fix typos

This commit is contained in:
Ion Gaztañaga
2022-05-03 23:01:03 +02:00
parent 06d74a1709
commit 71a9ef5341

View File

@ -886,7 +886,7 @@ the section [link intrusive.usage How to use Boost.Intrusive]:
* [*`linear<bool Enable>`]: the singly linked list is implemented as a
null-terminated list instead of a circular list. This allows `O(1)` swap,
but losses some operations like `container_from_end_iterator`.
but loses some operations like `container_from_end_iterator`.
* [*`cache_last<bool Enable>`]: `slist` also stores a pointer to the
last element of the singly linked list. This allows `O(1)` swap,
`splice_after(iterator, slist &)` and makes the list offer new functions
@ -2392,7 +2392,7 @@ Let's see a small function that shows the use of `iterator_to` and
[section:any_hooks Any Hooks: A single hook for any Intrusive container]
Sometimes, a class programmer wants to place a class in several intrusive
containers but no at the same time. In this case, the programmer might
containers but not at the same time. In this case, the programmer might
decide to insert two hooks in the same class.
[c++]