summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2009-07-20 13:38:26 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2009-07-20 13:38:26 +1000
commitf533e2bd0748b044757343c88946211397de01a3 (patch)
treec7d30fb5a84c493f200d7bcea886a6dbd0c1a1f7
parent3090b6b64c5456e0e8ac1776fffa68e946f02282 (diff)
parent26593e663e6f2846411f5e030afbf8e6f144cf9e (diff)
Merge commit 'jc_docs/docs-next'
-rw-r--r--Documentation/filesystems/seq_file.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/seq_file.txt b/Documentation/filesystems/seq_file.txt
index b843743aa0b5..0d15ebccf5b0 100644
--- a/Documentation/filesystems/seq_file.txt
+++ b/Documentation/filesystems/seq_file.txt
@@ -46,7 +46,7 @@ better to do. The file is seekable, in that one can do something like the
following:
dd if=/proc/sequence of=out1 count=1
- dd if=/proc/sequence skip=1 out=out2 count=1
+ dd if=/proc/sequence skip=1 of=out2 count=1
Then concatenate the output files out1 and out2 and get the right
result. Yes, it is a thoroughly useless module, but the point is to show