Fix some typos.

This commit is contained in:
Kohei Takahashi
2015-01-21 19:34:44 +09:00
parent 3955f76511
commit b3c560d3b6
2 changed files with 3 additions and 3 deletions

View File

@ -1363,7 +1363,7 @@ Returns a new sequence, with all the elements of the original sequence, except t
typename T, typename T,
typename Sequence typename Sequence
> >
typename __result_of_remove__<Sequence const, T>::type replace(Sequence const& seq); typename __result_of_remove__<Sequence const, T>::type remove(Sequence const& seq);
[table Parameters [table Parameters
[[Parameter][Requirement][Description]] [[Parameter][Requirement][Description]]
@ -1832,7 +1832,7 @@ Constant. Returns a view which is lazily evaluated.
#include <boost/fusion/include/pop_back.hpp> #include <boost/fusion/include/pop_back.hpp>
[heading Example] [heading Example]
assert(___pop_back__(__make_vector__(1,2,3)) == __make_vector__(1,2)); assert(__pop_back__(__make_vector__(1,2,3)) == __make_vector__(1,2));
[endsect] [endsect]

View File

@ -323,7 +323,7 @@ For our __random_access_sequence__ we will also need to implement `size_impl`,
In order for `example_struct` to serve as an associative forward sequence, In order for `example_struct` to serve as an associative forward sequence,
we need to adapt the traversal category of our sequence and our iterator we need to adapt the traversal category of our sequence and our iterator
accordingly and enable 3 intrinsic sequence lookup features, __at_key__, accordingly and enable 3 intrinsic sequence lookup features, __at_key__,
__value_at_key__ and __has_key__. We also need to enable 3 iterator lookup __result_of_value_at_key__ and __has_key__. We also need to enable 3 iterator lookup
features, __result_of_key_of__, __result_of_value_of_data__ and __deref_data__. features, __result_of_key_of__, __result_of_value_of_data__ and __deref_data__.
To implement `at_key_impl` we need to associate the `fields::name` and `fields::age` To implement `at_key_impl` we need to associate the `fields::name` and `fields::age`