From 8608fdd923c3c7a8492af8967942bed5c3f1df4a Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 12 Feb 2022 20:59:49 +0200 Subject: [PATCH] Update documentation --- doc/examples.adoc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/examples.adoc b/doc/examples.adoc index 3902ba8..3a9b906 100644 --- a/doc/examples.adoc +++ b/doc/examples.adoc @@ -194,9 +194,10 @@ take a source location argument that defaults to `BOOST_CURRENT_LOCATION`. This allows the source location attached to the exception to point at the location of the call to `f2`, rather than inside of `f2`. -Since `f2` is typically called many times, this is usually what we want, -because it enables us to identify the throwing call, rather than merely -to know that it was `f2` that threw. +Since functions such as `f2` are typically called from more than one place +in the program, this is usually what we want, because it enables us to +identify the throwing call, rather than merely to know that it was `f2` +that threw. ``` #include