From 140a30f6f4c6d8a74d3e30b04781eebcf1ff341b Mon Sep 17 00:00:00 2001 From: Vesa Karvonen Date: Fri, 8 Mar 2002 13:27:37 +0000 Subject: [PATCH] Fixed off-by-one error in documentation [SVN r13129] --- doc/reference/repeat.htm | 2 +- include/boost/preprocessor/repeat.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/reference/repeat.htm b/doc/reference/repeat.htm index fae87b2..7c1066f 100644 --- a/doc/reference/repeat.htm +++ b/doc/reference/repeat.htm @@ -27,7 +27,7 @@

#define BOOST_PP_REPEAT(N,M,P)

-

Repeats the macro M(I,P) for I = [0,N-1[.

+

Repeats the macro M(I,P) for I = [0,N[.

In other words, expands to the sequence:

diff --git a/include/boost/preprocessor/repeat.hpp b/include/boost/preprocessor/repeat.hpp index 0478320..8ef8ee0 100644 --- a/include/boost/preprocessor/repeat.hpp +++ b/include/boost/preprocessor/repeat.hpp @@ -13,7 +13,7 @@ * See http://www.boost.org for most recent version. */ -/**

Repeats the macro M(I,P) for I = [0,N-1[.

+/**

Repeats the macro M(I,P) for I = [0,N[.

In other words, expands to the sequence: