spelling: nonexistent

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-11-01 21:34:50 -04:00
committed by Andrzej Krzemienski
parent ba1846abd3
commit a4479bf8cd
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ This is because we know that string value `"100"` converts to a valid value of `
// deal with it // 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); int k = convert(text).value_or(0);

View File

@ -100,7 +100,7 @@
<span class="special">}</span> <span class="special">}</span>
</pre> </pre>
<p> <p>
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 contained value. If your way of dealing with the missing value is to use
some default, like <code class="computeroutput"><span class="number">0</span></code>, there exists some default, like <code class="computeroutput"><span class="number">0</span></code>, there exists
a yet another alternative: a yet another alternative:

View File

@ -84,7 +84,7 @@
<span class="special">}</span> <span class="special">}</span>
</pre> </pre>
<p> <p>
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 contained value. If your way of dealing with the missing value is to use
some default, like <code class="computeroutput"><span class="number">0</span></code>, there exists some default, like <code class="computeroutput"><span class="number">0</span></code>, there exists
a yet another alternative: a yet another alternative: