aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2009-09-14 17:52:32 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2009-09-14 17:52:32 -0700
commita9bbd210a44102cc50b30a5f3d111dbf5f2f9cd4 (patch)
tree27bf5c64fbda8ed7796de52d495982fc30a56c8b /Documentation/filesystems
parentMerge branch 'devel' of master.kernel.org:/home/rmk/linux-2.6-arm (diff)
parentDocument the flex_array library. (diff)
downloadlinux-dev-a9bbd210a44102cc50b30a5f3d111dbf5f2f9cd4.tar.xz
linux-dev-a9bbd210a44102cc50b30a5f3d111dbf5f2f9cd4.zip
Merge branch 'docs-next' of git://git.lwn.net/linux-2.6
* 'docs-next' of git://git.lwn.net/linux-2.6: Document the flex_array library. Doc: seq_file.txt fix wrong dd command example.
Diffstat (limited to 'Documentation/filesystems')
-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