summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-07-28 00:05:10 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-07-28 00:05:10 +0200
commit4881a6a9a3b4e466f852ab9b3a084f7c4a55d8b5 (patch)
tree7d3871a401c98129b61789f16b4e47ce8e7bc07d
parent767c5bf01da8fede026939c52a1550f382b1a894 (diff)
downloadnode-4881a6a9a3b4e466f852ab9b3a084f7c4a55d8b5.tar.gz
doc: clarify fs.read() offset argument
-rw-r--r--doc/api/fs.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/fs.markdown b/doc/api/fs.markdown
index 6435a3044..39e61db05 100644
--- a/doc/api/fs.markdown
+++ b/doc/api/fs.markdown
@@ -390,7 +390,7 @@ Read data from the file specified by `fd`.
`buffer` is the buffer that the data will be written to.
-`offset` is offset within the buffer where reading will start.
+`offset` is the offset in the buffer to start writing at.
`length` is an integer specifying the number of bytes to read.