summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-22 06:06:34 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-22 06:06:34 +0000
commit57502a5e57865680008dabe8a1e38d7811b447c0 (patch)
tree1d72c3dc67f3f21c9c87b8d8cd6f4bd75b361437 /io.c
parent334f3dd5cec5c753b943868f2bc9063bc9239376 (diff)
merge from trunk (28381)
* io.c: rdoc fix for ARGF.lineno; see [ruby-core:29048] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 3fedc9165f..274ee89c10 100644
--- a/io.c
+++ b/io.c
@@ -6660,7 +6660,7 @@ argf_initialize_copy(VALUE argf, VALUE orig)
* call-seq:
* ARGF.lineno = number -> nil
*
- * Sets the line number of the current file in +ARGF+ to the given +Integer+.
+ * Sets the line number of +ARGF+ as a whole to the given +Integer+.
*
* +ARGF+ sets the line number automatically as you read data, so normally
* you will not need to set it explicitly. To access the current line number
@@ -6686,7 +6686,7 @@ argf_set_lineno(VALUE argf, VALUE val)
* call-seq:
* ARGF.lineno -> integer
*
- * Returns the current line number of the current file in +ARGF+. This value
+ * Returns the current line number of ARGF as a whole. This value
* can be set manually with +ARGF.lineno=+.
*
* For example: