Mistake in HTML-gen of small_vector_base

Soul Studios <[email protected]> Sun, 10 Jan 2016 15:59:51 +1300
Newsgroups gmane.comp.lib.boost.documentation
Message-ID <[email protected]>
"This class consists of common code from all small_vector<T, N> types 
that don't depend on the "N" template parameter. This class is 
non-copyable and non-destructible, so this class tipically used as 
reference argument to functions that read or write small vectors. Since 
small_vector<T, N> derives from small_vector_base<T>, the conversion to 
small_vector_base is implicit <preformatted></preformatted>

<preformatted>//Clients can pass any small_vector<Foo, N>. void 
read_any_small_vector_of_foo(const small_vector_base<Foo> 
&in_parameter);</preformatted>

<preformatted>void modify_any_small_vector_of_foo(small_vector_base<Foo> 
&out_parameter);</preformatted>

<preformatted>void some_function() {</preformatted>

<preformatted> small_vector<Foo, 8> myvector;</preformatted>

<preformatted> read_any_small_vector_of_foo(myvector); // Reads 
myvector</preformatted>

<preformatted> modify_any_small_vector_of_foo(myvector); // Modifies 
myvector</preformatted>

<preformatted>} </preformatted>"

Looks like the generated 'preformatted' tag and associated code 
(<p><span style="color: red">&lt;preformatted&gt;) is meant to be a 
series of <code> enclosures.

Also, typically is spelt, with a 'y'...
M