Commit acb504fa authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2853 from jbreeden/alloc_doc

Alloc doc
parents 1001be2e 18337266
...@@ -1174,11 +1174,11 @@ mrb_instance_alloc(mrb_state *mrb, mrb_value cv) ...@@ -1174,11 +1174,11 @@ mrb_instance_alloc(mrb_state *mrb, mrb_value cv)
* call-seq: * call-seq:
* class.new(args, ...) -> obj * class.new(args, ...) -> obj
* *
* Calls <code>allocate</code> to create a new object of * Creates a new object of <i>class</i>'s class, then
* <i>class</i>'s class, then invokes that object's * invokes that object's <code>initialize</code> method,
* <code>initialize</code> method, passing it <i>args</i>. * passing it <i>args</i>. This is the method that ends
* This is the method that ends up getting called whenever * up getting called whenever an object is constructed using
* an object is constructed using .new. * `.new`.
* *
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment