summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-29 17:49:18 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-29 17:49:18 +0000
commit41d50725736df60e0118c337f8378b27497c7d94 (patch)
tree76f9c348804dd2d3873e81ed7e2dddfc3a32cc1b /object.c
parent66529e382f93217f5655deb53c2129b200af1a55 (diff)
* object.c (rb_obj_freeze): update rdoc to mention RuntimeError
(not TypeError any longer) would be raised. [ruby-dev:35982] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/object.c b/object.c
index b796cfbf3c..36b99fc822 100644
--- a/object.c
+++ b/object.c
@@ -761,7 +761,7 @@ static st_table *immediate_frozen_tbl = 0;
* obj.freeze => obj
*
* Prevents further modifications to <i>obj</i>. A
- * <code>TypeError</code> will be raised if modification is attempted.
+ * <code>RuntimeError</code> will be raised if modification is attempted.
* There is no way to unfreeze a frozen object. See also
* <code>Object#frozen?</code>.
*
@@ -771,7 +771,7 @@ static st_table *immediate_frozen_tbl = 0;
*
* <em>produces:</em>
*
- * prog.rb:3:in `<<': can't modify frozen array (TypeError)
+ * prog.rb:3:in `<<': can't modify frozen array (RuntimeError)
* from prog.rb:3
*/