diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-27 07:08:58 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-27 07:08:58 +0000 |
commit | 546e4aa194daee37cde7a5bd26429489567dc4bf (patch) | |
tree | e3944e870a80c84b04cd767aa892be577e228be6 /io.c | |
parent | 7aefa8e580f06ff869411092e38b7a18ba44240d (diff) | |
download | ruby-546e4aa194daee37cde7a5bd26429489567dc4bf.tar.gz |
* io.c: fixed rdoc. [ruby-Bugs:2523]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3501,7 +3501,7 @@ rb_f_printf(int argc, VALUE *argv) * ios.print(obj, ...) => nil * * Writes the given object(s) to <em>ios</em>. The stream must be - * opened for writing. If the output record separator (<code>$\</code>) + * opened for writing. If the output record separator (<code>$\\</code>) * is not <code>nil</code>, it will be appended to the output. If no * arguments are given, prints <code>$_</code>. Objects that aren't * strings will be converted by calling their <code>to_s</code> method. @@ -3554,7 +3554,7 @@ rb_io_print(int argc, VALUE *argv, VALUE out) * Prints each object in turn to <code>$stdout</code>. If the output * field separator (<code>$,</code>) is not +nil+, its * contents will appear between each field. If the output record - * separator (<code>$\</code>) is not +nil+, it will be + * separator (<code>$\\</code>) is not +nil+, it will be * appended to the output. If no arguments are given, prints * <code>$_</code>. Objects that aren't strings will be converted by * calling their <code>to_s</code> method. |