diff options
author | 2013-04-17 18:53:27 +0000 | |
---|---|---|
committer | 2013-04-17 18:53:27 +0000 | |
commit | 3fd508652009d416ce4a26053a2aad2cc83af693 (patch) | |
tree | 501a1130ee0739ca08c545bad7740cc89fc6b1b7 /lib/libc/stdlib | |
parent | the tiniest of style tweaks (diff) | |
download | wireguard-openbsd-3fd508652009d416ce4a26053a2aad2cc83af693.tar.xz wireguard-openbsd-3fd508652009d416ce4a26053a2aad2cc83af693.zip |
surround the error strings with quotes to clarify exactly which strings
the function is going to return.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/strtonum.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdlib/strtonum.3 b/lib/libc/stdlib/strtonum.3 index 58b4112ac3a..bd66711e6c9 100644 --- a/lib/libc/stdlib/strtonum.3 +++ b/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 |