* ext/socket/option.c: Document synonymous methods, by windwiny [GH-277]

* ext/stringio/stringio.c: ditto
* ext/io/wait/wait.c: ditto
* ext/gdbm/gdbm.c: ditto
* ext/dl/cfunc.c: ditto
* ext/zlib/zlib.c: ditto
* ext/win32ole/win32ole.c: ditto
* ext/dbm/dbm.c: ditto
* ext/json/generator/generator.c: ditto
* ext/date/date_core.c: ditto


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-04-16 03:25:50 +00:00
Родитель bbf0ea6bfb
Коммит 3a7a773aeb
11 изменённых файлов: 44 добавлений и 13 удалений

Просмотреть файл

@ -1,3 +1,16 @@
Tue Apr 16 12:25:00 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/socket/option.c: Document synonymous methods, by windwiny [GH-277]
* ext/stringio/stringio.c: ditto
* ext/io/wait/wait.c: ditto
* ext/gdbm/gdbm.c: ditto
* ext/dl/cfunc.c: ditto
* ext/zlib/zlib.c: ditto
* ext/win32ole/win32ole.c: ditto
* ext/dbm/dbm.c: ditto
* ext/json/generator/generator.c: ditto
* ext/date/date_core.c: ditto
Tue Apr 16 11:23:00 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/openssl/*: Document synonymous methods, by windwiny [GH-277]

Просмотреть файл

@ -5935,6 +5935,7 @@ d_lite_prev_day(int argc, VALUE *argv, VALUE self)
/*
* call-seq:
* d.succ -> date
* d.next -> date
*
* Returns a date object denoting the following day.

Просмотреть файл

@ -655,6 +655,7 @@ fdbm_store(VALUE obj, VALUE keystr, VALUE valstr)
/*
* call-seq:
* dbm.length -> integer
* dbm.size -> integer
*
* Returns the number of entries in the database.
*/
@ -832,7 +833,10 @@ fdbm_values(VALUE obj)
/*
* call-seq:
* dbm.include?(key) -> boolean
* dbm.has_key?(key) -> boolean
* dbm.member?(key) -> boolean
* dbm.key?(key) -> boolean
*
* Returns true if the database contains the specified key, false otherwise.
*/
@ -859,6 +863,7 @@ fdbm_has_key(VALUE obj, VALUE keystr)
/*
* call-seq:
* dbm.has_value?(value) -> boolean
* dbm.value?(value) -> boolean
*
* Returns true if the database contains the specified string value, false
* otherwise.

Просмотреть файл

@ -285,7 +285,9 @@ rb_dlcfunc_set_ptr(VALUE self, VALUE addr)
}
/*
* call-seq: inspect
* call-seq:
* inspect
* to_s
*
* Returns a string formatted with an easily readable representation of the
* internal state of the DL::CFunc

Просмотреть файл

@ -953,7 +953,9 @@ fgdbm_values(VALUE obj)
/*
* call-seq:
* gdbm.include?(k) -> true or false
* gdbm.has_key?(k) -> true or false
* gdbm.member?(k) -> true or false
* gdbm.key?(k) -> true or false
*
* Returns true if the given key _k_ exists within the database.

Просмотреть файл

@ -96,6 +96,8 @@ io_ready_p(VALUE io)
* call-seq:
* io.wait -> IO, true, false or nil
* io.wait(timeout) -> IO, true, false or nil
* io.wait_readable -> IO, true, false or nil
* io.wait_readable(timeout) -> IO, true, false or nil
*
* Waits until input is available or times out and returns self or nil when
* EOF is reached.

Просмотреть файл

@ -1178,11 +1178,11 @@ static VALUE cState_array_nl_set(VALUE self, VALUE array_nl)
/*
* call-seq: check_circular?
*
* Returns true, if circular data structures should be checked,
* otherwise returns false.
*/
* call-seq: check_circular?
*
* Returns true, if circular data structures should be checked,
* otherwise returns false.
*/
static VALUE cState_check_circular_p(VALUE self)
{
GET_STATE(self);

Просмотреть файл

@ -127,6 +127,7 @@ sockopt_optname_m(VALUE self)
/*
* call-seq:
* sockopt.data => string
* sockopt.to_s => string
*
* returns the socket option data as a string.
*

Просмотреть файл

@ -1331,6 +1331,8 @@ strio_read(int argc, VALUE *argv, VALUE self)
/*
* call-seq:
* strio.sysread(integer[, outbuf]) -> string
* strio.readpartial(integer[, outbuf]) -> string
* strio.read_nonblock(integer[, outbuf]) -> string
*
* Similar to #read, but raises +EOFError+ at end of string instead of
* returning +nil+, as well as IO#sysread does.
@ -1363,6 +1365,7 @@ strio_sysread(int argc, VALUE *argv, VALUE self)
/*
* call-seq:
* strio.length -> integer
* strio.size -> integer
*
* Returns the size of the buffer string.

Просмотреть файл

@ -5752,7 +5752,7 @@ ole_type_visible(ITypeInfo *pTypeInfo)
/*
* call-seq:
* WIN32OLE_TYPE#visible #=> true or false
* WIN32OLE_TYPE#visible? #=> true or false
*
* Returns true if the OLE class is public.
* tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Application')

Просмотреть файл

@ -1293,12 +1293,8 @@ rb_zstream_finish(VALUE obj)
/*
* call-seq:
* flush_next_out -> String
* flush_next_out { |chunk| ... } -> nil
* flush_next_in -> input
*
* Flushes output buffer and returns all data in that buffer. If a block is
* given each chunk is yielded to the block until the current output buffer
* has been flushed.
*/
static VALUE
rb_zstream_flush_next_in(VALUE obj)
@ -1313,7 +1309,13 @@ rb_zstream_flush_next_in(VALUE obj)
}
/*
* Flushes output buffer and returns all data in that buffer.
* call-seq:
* flush_next_out -> String
* flush_next_out { |chunk| ... } -> nil
*
* Flushes output buffer and returns all data in that buffer. If a block is
* given each chunk is yielded to the block until the current output buffer
* has been flushed.
*/
static VALUE
rb_zstream_flush_next_out(VALUE obj)