summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2011-03-22 15:55:44 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2011-03-22 15:55:44 +0000
commitfe81924596466cacd295d2f4e29461e75b9adbba (patch)
tree5957b2bed5bd38dc36ac12bbae30a6114207c1bf
parent40f9428fdf18a6d74b29d956d89f3d172eaf4700 (diff)
some small tweaks from Michael W. Bombardieri;
ok sobrado
-rw-r--r--usr.bin/awk/awk.110
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/awk/awk.1 b/usr.bin/awk/awk.1
index 73666d0ac87..00261d81e59 100644
--- a/usr.bin/awk/awk.1
+++ b/usr.bin/awk/awk.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: awk.1,v 1.38 2011/02/07 00:02:50 schwarze Exp $
+.\" $OpenBSD: awk.1,v 1.39 2011/03/22 15:55:43 jmc Exp $
.\"
.\" Copyright (C) Lucent Technologies 1997
.\" All Rights Reserved
@@ -22,7 +22,7 @@
.\" ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
.\" THIS SOFTWARE.
.\"
-.Dd $Mdocdate: February 7 2011 $
+.Dd $Mdocdate: March 22 2011 $
.Dt AWK 1
.Os
.Sh NAME
@@ -628,7 +628,7 @@ The stream remains open until explicitly closed with a call to
.Ic getline
returns 1 for a successful input, 0 for end of file, and \-1 for an error.
.It Fn fflush [expr]
-Flushes any buffered output for the file, pipe
+Flushes any buffered output for the file or pipe
.Fa expr ,
or all open files or pipes if
.Fa expr
@@ -704,9 +704,9 @@ Performs a bitwise OR on integer arguments x and y.
.It Fn xor x y
Performs a bitwise Exclusive-OR on integer arguments x and y.
.It Fn lshift x n
-Returns x shifted by n bits to the left.
+Returns integer argument x shifted by n bits to the left.
.It Fn rshift x n
-Returns y shifted by n bits to the right.
+Returns integer argument x shifted by n bits to the right.
.El
.Sh EXIT STATUS
.Ex -std awk