lseek.2: wfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2016-01-26 10:06:41 +01:00
parent 930fa2cd5a
commit e2b89c5c8c
1 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@ lseek \- reposition read/write file offset
.SH DESCRIPTION
The
.BR lseek ()
function repositions the offset of the open file description
function repositions the file offset of the open file description
associated with the file descriptor
.I fd
to the argument
@ -66,17 +66,17 @@ according to the directive
as follows:
.TP
.B SEEK_SET
The offset is set to
The file offset is set to
.I offset
bytes.
.TP
.B SEEK_CUR
The offset is set to its current location plus
The file offset is set to its current location plus
.I offset
bytes.
.TP
.B SEEK_END
The offset is set to the size of the file plus
The file offset is set to the size of the file plus
.I offset
bytes.
.PP