diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2008-07-30 19:41:33 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2008-07-30 19:41:33 +0000 |
commit | b69a316db09a30f77552c0d33ae1f6ee3e62d73a (patch) | |
tree | dbdbbfaadca624405e2b6ffa661412b4f6dd1aab /share/man/man9 | |
parent | cb36561c865de9e7d9976aad1dcab935ba936d97 (diff) |
In the .Fn entries for timeout_add_usec/nsec, don't call the parameter
``sec''. Instead, use usec/nsec.
Agreed with/no opposition from blambert.
Diffstat (limited to 'share/man/man9')
-rw-r--r-- | share/man/man9/timeout.9 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/timeout.9 b/share/man/man9/timeout.9 index 10257c76cce..caf6f8dbd0b 100644 --- a/share/man/man9/timeout.9 +++ b/share/man/man9/timeout.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: timeout.9,v 1.27 2008/07/24 17:31:59 mk Exp $ +.\" $OpenBSD: timeout.9,v 1.28 2008/07/30 19:41:32 mk Exp $ .\" .\" Copyright (c) 2000 Artur Grabowski <art@openbsd.org> .\" All rights reserved. @@ -23,7 +23,7 @@ .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF .\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: July 24 2008 $ +.Dd $Mdocdate: July 30 2008 $ .Dt TIMEOUT 9 .Os .Sh NAME @@ -64,9 +64,9 @@ .Ft void .Fn "timeout_add_sec" "struct timeout *to" "int sec" .Ft void -.Fn "timeout_add_usec" "struct timeout *to" "int sec" +.Fn "timeout_add_usec" "struct timeout *to" "int usec" .Ft void -.Fn "timeout_add_nsec" "struct timeout *to" "int sec" +.Fn "timeout_add_nsec" "struct timeout *to" "int nsec" .Sh DESCRIPTION The .Nm timeout |