summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortedu <>2013-04-17 18:53:27 +0000
committertedu <>2013-04-17 18:53:27 +0000
commit1eb5ad9f9ccae69439b488099cded4ac7ad55bae (patch)
tree0328ba5046ea3847c606cd2bfa9a86b055bc2149 /src
parenta061f61d9f5cb094b5c0360975cf2988548487c2 (diff)
downloadopenbsd-1eb5ad9f9ccae69439b488099cded4ac7ad55bae.tar.gz
openbsd-1eb5ad9f9ccae69439b488099cded4ac7ad55bae.tar.bz2
openbsd-1eb5ad9f9ccae69439b488099cded4ac7ad55bae.zip
surround the error strings with quotes to clarify exactly which strings
the function is going to return.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/strtonum.310
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libc/stdlib/strtonum.3 b/src/lib/libc/stdlib/strtonum.3
index 58b4112ac3..bd66711e6c 100644
--- a/src/lib/libc/stdlib/strtonum.3
+++ b/src/lib/libc/stdlib/strtonum.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: strtonum.3,v 1.14 2007/05/31 19:19:31 jmc Exp $ 1.\" $OpenBSD: strtonum.3,v 1.15 2013/04/17 18:53:27 tedu Exp $
2.\" 2.\"
3.\" Copyright (c) 2004 Ted Unangst 3.\" Copyright (c) 2004 Ted Unangst
4.\" 4.\"
@@ -14,7 +14,7 @@
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\" 16.\"
17.Dd $Mdocdate: May 31 2007 $ 17.Dd $Mdocdate: April 17 2013 $
18.Dt STRTONUM 3 18.Dt STRTONUM 3
19.Os 19.Os
20.Sh NAME 20.Sh NAME
@@ -119,11 +119,11 @@ If an error occurs,
119will be set to one of the following strings: 119will be set to one of the following strings:
120.Pp 120.Pp
121.Bl -tag -width "too largeXX" -compact 121.Bl -tag -width "too largeXX" -compact
122.It too large 122.It Qq too large
123The result was larger than the provided maximum value. 123The result was larger than the provided maximum value.
124.It too small 124.It Qq too small
125The result was smaller than the provided minimum value. 125The result was smaller than the provided minimum value.
126.It invalid 126.It Qq invalid
127The string did not consist solely of digit characters. 127The string did not consist solely of digit characters.
128.El 128.El
129.Sh SEE ALSO 129.Sh SEE ALSO