From b359b9cba39f1f7cba6ede28479420fb5550dc98 Mon Sep 17 00:00:00 2001 From: tedu <> Date: Wed, 17 Apr 2013 18:53:27 +0000 Subject: [PATCH] surround the error strings with quotes to clarify exactly which strings the function is going to return. --- src/lib/libc/stdlib/strtonum.3 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/libc/stdlib/strtonum.3 b/src/lib/libc/stdlib/strtonum.3 index 58b4112a..bd66711e 100644 --- a/src/lib/libc/stdlib/strtonum.3 +++ b/src/lib/libc/stdlib/strtonum.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: strtonum.3,v 1.14 2007/05/31 19:19:31 jmc Exp $ +.\" $OpenBSD: strtonum.3,v 1.15 2013/04/17 18:53:27 tedu Exp $ .\" .\" Copyright (c) 2004 Ted Unangst .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: April 17 2013 $ .Dt STRTONUM 3 .Os .Sh NAME @@ -119,11 +119,11 @@ If an error occurs, will be set to one of the following strings: .Pp .Bl -tag -width "too largeXX" -compact -.It too large +.It Qq too large The result was larger than the provided maximum value. -.It too small +.It Qq too small The result was smaller than the provided minimum value. -.It invalid +.It Qq invalid The string did not consist solely of digit characters. .El .Sh SEE ALSO