From e2b89c5c8cd4d9925c7a8bcc71e61eb70ab85dd6 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Tue, 26 Jan 2016 10:06:41 +0100 Subject: [PATCH] lseek.2: wfix Signed-off-by: Michael Kerrisk --- man2/lseek.2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/man2/lseek.2 b/man2/lseek.2 index 9549a336b..c5299e8d9 100644 --- a/man2/lseek.2 +++ b/man2/lseek.2 @@ -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