forked from boostorg/regex
Fix typos from https://svn.boost.org/trac/boost/ticket/9283 and update history.
This commit is contained in:
@ -22,7 +22,7 @@
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="algorithm.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../install.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
<div class="section boost_regex_configuration_tuning">
|
||||
<div class="section">
|
||||
<div class="titlepage"><div><div><h3 class="title">
|
||||
<a name="boost_regex.configuration.tuning"></a><a class="link" href="tuning.html" title="Algorithm Tuning">Algorithm Tuning</a>
|
||||
</h3></div></div></div>
|
||||
@ -110,7 +110,7 @@
|
||||
Tells Boost.Regex how many blocks of size BOOST_REGEX_BLOCKSIZE
|
||||
it is permitted to use. If this value is exceeded then Boost.Regex
|
||||
will stop trying to find a match and throw a std::runtime_error.
|
||||
Defaults to 1024, don't forget to tweek this value if you alter
|
||||
Defaults to 1024, don't forget to tweak this value if you alter
|
||||
BOOST_REGEX_BLOCKSIZE by much.
|
||||
</p>
|
||||
</td>
|
||||
@ -125,7 +125,7 @@
|
||||
<p>
|
||||
Tells Boost.Regex how many memory blocks to store in it's internal
|
||||
cache - memory blocks are taken from this cache rather than by
|
||||
calling ::operator new. Generally speeking this can be an order
|
||||
calling ::operator new. Generally speaking this can be an order
|
||||
of magnitude faster than calling ::opertator new each time a memory
|
||||
block is required, but has the downside that Boost.Regex can end
|
||||
up caching a large chunk of memory (by default up to 16 blocks
|
||||
|
Reference in New Issue
Block a user