From aa62f4f9c7ba776974e74c04d56803268097509d Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 13 Jul 2004 20:06:07 +0000 Subject: [PATCH] fixed a little buglet in the spec of Incrementable Iterator [SVN r23511] --- doc/new-iter-concepts.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/new-iter-concepts.rst b/doc/new-iter-concepts.rst index e9ed9da..75a4cb8 100644 --- a/doc/new-iter-concepts.rst +++ b/doc/new-iter-concepts.rst @@ -468,7 +468,8 @@ stated semantics. +--------------------------------+----------------------------------+---------------------------------------+ |``r++`` |if ``X`` is a *Writable Iterator* |if ``X`` is a *Writable Iterator* then | | |then convertible to ``const X&`` |``X a(r++);`` is equivalent to | -| | |``X a(r); ++r;`` | +| | |``X a(r); ++r;`` otherwise ``r++`` | +| | |is equivalent to ``++r`` | +--------------------------------+----------------------------------+---------------------------------------+ |``*r++`` |if ``X`` is a *Readable Iterator* |if ``X`` is a *Readable Iterator* then | | |then ``T`` |``T z(*r++);`` is equivalent to |