diff --git a/doc/mp11/algorithm.qbk b/doc/mp11/algorithm.qbk index 2a5e578..b67cfa3 100644 --- a/doc/mp11/algorithm.qbk +++ b/doc/mp11/algorithm.qbk @@ -191,10 +191,9 @@ for the elements of `L` and `mp_false` for the elements of `L`. Re [section `mp_find`] template using mp_find = /*...*/; -Returns the index at which type `V` is located in list `L`. - -`mp_find` is an alias for `mp_size_t`, where `I` is the zero-based index of the first occurence of `V` in `L`. If -`L` does not contain `V`, `mp_find` is `mp_size`. +`mp_find` returns the index at which the type `V` is located in the list `L`. It's an alias for `mp_size_t`, +where `I` is the zero-based index of the first occurence of `V` in `L`. If `L` does not contain `V`, `mp_find` +is `mp_size`. [endsect] [section `mp_find_if`]