From a4479bf8cd4729a83fc3195144975ce96b78e27a Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 1 Nov 2022 21:34:50 -0400 Subject: [PATCH] spelling: nonexistent Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- doc/01_quick_start.qbk | 2 +- doc/html/boost_optional/quick_start.html | 2 +- doc/html/boost_optional/quick_start/optional_return_values.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/01_quick_start.qbk b/doc/01_quick_start.qbk index 6341e61..ae5f828 100644 --- a/doc/01_quick_start.qbk +++ b/doc/01_quick_start.qbk @@ -44,7 +44,7 @@ This is because we know that string value `"100"` converts to a valid value of ` // deal with it } -This version throws an exception upon an attempt to access a non-existent contained value. If your way of dealing with the missing value is to use some default, like `0`, there exists a yet another alternative: +This version throws an exception upon an attempt to access a nonexistent contained value. If your way of dealing with the missing value is to use some default, like `0`, there exists a yet another alternative: int k = convert(text).value_or(0); diff --git a/doc/html/boost_optional/quick_start.html b/doc/html/boost_optional/quick_start.html index dd8491a..0388d43 100644 --- a/doc/html/boost_optional/quick_start.html +++ b/doc/html/boost_optional/quick_start.html @@ -100,7 +100,7 @@ }
- This version throws an exception upon an attempt to access a non-existent
+ This version throws an exception upon an attempt to access a nonexistent
contained value. If your way of dealing with the missing value is to use
some default, like 0
, there exists
a yet another alternative:
diff --git a/doc/html/boost_optional/quick_start/optional_return_values.html b/doc/html/boost_optional/quick_start/optional_return_values.html
index 9ad85ef..fef09ff 100644
--- a/doc/html/boost_optional/quick_start/optional_return_values.html
+++ b/doc/html/boost_optional/quick_start/optional_return_values.html
@@ -84,7 +84,7 @@
}
- This version throws an exception upon an attempt to access a non-existent
+ This version throws an exception upon an attempt to access a nonexistent
contained value. If your way of dealing with the missing value is to use
some default, like 0
, there exists
a yet another alternative: