1
0
forked from boostorg/bind

Fixed a typo.

[SVN r12518]
This commit is contained in:
Peter Dimov
2002-01-26 16:59:05 +00:00
parent 70ec61e649
commit d276e73ea0

View File

@@ -211,7 +211,7 @@ the explicit return type can be omitted:
<pre>
int x = 8;
bind(std::less&lt;int&gt;, _1, 9)(x); // x < 9
bind(std::less&lt;int&gt;(), _1, 9)(x); // x < 9
</pre>
<p>