]> granicus.if.org Git - strace/commitdiff
strace.1: fix a typo
authorDmitry V. Levin <ldv@altlinux.org>
Wed, 22 Feb 2012 00:29:44 +0000 (00:29 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Wed, 22 Feb 2012 00:29:44 +0000 (00:29 +0000)
* strace.1: Fix a typo in example description.
This fixes Debian bug #653309.

strace.1

index e01f3a41586735b7b76cd2ca0cd6da5b80c0d0e4..8ca8593b2fae04a5fea0529b4fd6bf1f7a1d32c9 100644 (file)
--- a/strace.1
+++ b/strace.1
@@ -181,7 +181,7 @@ This example shows the shell performing ``>>xyzzy'' output redirection:
 .CW
 open("xyzzy", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3
 .CE
-Here the three argument form of open is decoded by breaking down the
+Here the third argument of open is decoded by breaking down the
 flag argument into its three bitwise-OR constituents and printing the
 mode value in octal by tradition.  Where traditional or native
 usage differs from ANSI or POSIX, the latter forms are preferred.