summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-10 08:12:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-10 08:12:04 +0000
commit2d6308cceb79078e4a2c0e5ed31450c5fc61babf (patch)
tree5270abe8973eef333c28c2bf5e70584d51e6ede3 /object.c
parentb27368a731c018fdabe64432d0b4a10270cf2b2e (diff)
* object.c (rb_obj_clone, rb_obj_dup): mentioned about
initialize_copy. [ruby-core:02339] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/object.c b/object.c
index c76b27f16e..0e89b0f619 100644
--- a/object.c
+++ b/object.c
@@ -246,6 +246,10 @@ init_copy(dest, obj)
* s2.str[1,4] = "i" #=> "i"
* s1.inspect #=> "#<Klass:0x401b3a38 @str=\"Hi\">"
* s2.inspect #=> "#<Klass:0x401b3998 @str=\"Hi\">"
+ *
+ * This method may have class-specific behavior. If so, that
+ * behavior will be documented under the #+initialize_copy+ method of
+ * the class.
*/
VALUE
@@ -278,6 +282,10 @@ rb_obj_clone(obj)
* in descendent classes. While <code>clone</code> is used to duplicate
* an object, including its internal state, <code>dup</code> typically
* uses the class of the descendent object to create the new instance.
+ *
+ * This method may have class-specific behavior. If so, that
+ * behavior will be documented under the #+initialize_copy+ method of
+ * the class.
*/
VALUE