From e5561cdf6a71e10d7f9e58ad3317a0398656adc4 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 18 Nov 2005 15:01:29 +0000 Subject: [PATCH] Fix a typo in the throws conditions [SVN r31689] --- doc/reference.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/reference.xml b/doc/reference.xml index a734fd7..fd66fdb 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -297,7 +297,7 @@ argN_type f(a1, a2, ..., aN), where f is the target of *this. if R is void, nothing is returned; otherwise, the return value of the call to f is returned. - bad_function_call if !this->empty(). Otherwise, may through any exception thrown by the target function f. + bad_function_call if this->empty(). Otherwise, may through any exception thrown by the target function f. @@ -719,7 +719,7 @@ argN_type f(a1, a2, ..., aN), where f is the target of *this. if R is void, nothing is returned; otherwise, the return value of the call to f is returned. - bad_function_call if !this->empty(). Otherwise, may through any exception thrown by the target function f. + bad_function_call if this->empty(). Otherwise, may through any exception thrown by the target function f.