From 90943649fe9fa474d6404acc3b9915e0388a14b5 Mon Sep 17 00:00:00 2001 From: drbrain Date: Fri, 13 Jan 2012 21:59:36 +0000 Subject: [PATCH] * io.c (rb_io_s_read): Fix formatting of open_args comment. Reported by Adam Prescott. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ io.c | 28 ++++++++++++++++------------ 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3f2b6a418f..99f30562ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 14 05:58:54 2012 Eric Hodel + + * io.c (rb_io_s_read): Fix formatting of open_args comment. Reported + by Adam Prescott. + Fri Jan 13 18:41:19 2012 Nobuyoshi Nakada * sprintf.c (rb_enc_vsprintf): can be used for ASCII compatible diff --git a/io.c b/io.c index f6252e2f48..80ec74118b 100644 --- a/io.c +++ b/io.c @@ -9025,31 +9025,35 @@ seek_before_access(VALUE argp) * IO.read(name, [length [, offset]] ) -> string * IO.read(name, [length [, offset]], open_args) -> string * - * Opens the file, optionally seeks to the given offset, then returns - * length bytes (defaulting to the rest of the file). - * read ensures the file is closed before returning. + * Opens the file, optionally seeks to the given +offset+, then returns + * +length+ bytes (defaulting to the rest of the file). read + * ensures the file is closed before returning. * * If the last argument is a hash, it specifies option for internal * open(). The key would be the following. open_args: is exclusive * to others. * - * encoding: string or encoding + * encoding:: + * string or encoding * - * specifies encoding of the read string. encoding will be ignored + * specifies encoding of the read string. +encoding+ will be ignored * if length is specified. * - * mode: string + * mode:: + * string * - * specifies mode argument for open(). it should start with "r" - * otherwise it would cause error. + * specifies mode argument for open(). It should start with "r" + * otherwise it will cause an error. * - * open_args: array of strings + * open_args:: array of strings * * specifies arguments for open() as an array. * - * IO.read("testfile") #=> "This is line one\nThis is line two\nThis is line three\nAnd so on...\n" - * IO.read("testfile", 20) #=> "This is line one\nThi" - * IO.read("testfile", 20, 10) #=> "ne one\nThis is line " + * Examples: + * + * IO.read("testfile") #=> "This is line one\nThis is line two\nThis is line three\nAnd so on...\n" + * IO.read("testfile", 20) #=> "This is line one\nThi" + * IO.read("testfile", 20, 10) #=> "ne one\nThis is line " */ static VALUE