aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--vm_method.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index edd459c9e0..b28857e32a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
-Sun Jul 5 08:11:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Sun Jul 5 08:14:38 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * vm_method.c (rb_add_method, remove_method, rb_undef): fixed
+ minor grammatical errors in warnings. a patch from Run Pain
+ Run Run at [ruby-core:24141].
* vm_method.c (Init_eval_method): registers notimplement_body as a
mark-object.
diff --git a/vm_method.c b/vm_method.c
index 3dff244cce..292146dab9 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -175,7 +175,7 @@ rb_add_method(VALUE klass, ID mid, NODE * node, int noex)
if (mid == object_id || mid == id__send__) {
if (node && nd_type(node) == RUBY_VM_METHOD_NODE) {
- rb_warn("redefining `%s' may cause serious problem",
+ rb_warn("redefining `%s' may cause serious problems",
rb_id2name(mid));
}
}
@@ -322,7 +322,7 @@ remove_method(VALUE klass, ID mid)
if (OBJ_FROZEN(klass))
rb_error_frozen("class/module");
if (mid == object_id || mid == id__send__ || mid == idInitialize) {
- rb_warn("removing `%s' may cause serious problem", rb_id2name(mid));
+ rb_warn("removing `%s' may cause serious problems", rb_id2name(mid));
}
if (st_lookup(RCLASS_M_TBL(klass), mid, &data)) {
body = (NODE *)data;
@@ -500,7 +500,7 @@ rb_undef(VALUE klass, ID id)
}
rb_frozen_class_p(klass);
if (id == object_id || id == id__send__ || id == idInitialize) {
- rb_warn("undefining `%s' may cause serious problem", rb_id2name(id));
+ rb_warn("undefining `%s' may cause serious problems", rb_id2name(id));
}
body = search_method(klass, id, &origin);
if (!body || !body->nd_body) {