From fd4d1dde2f88547afadb8270143911adfd50d916 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 4 Jul 2009 23:14:43 +0000 Subject: * vm_method.c (rb_add_method, remove_method, rb_undef): fixed minor grammatical errors in warnings. a patch from Run Paint Run Run at [ruby-core:24141]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_method.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vm_method.c') 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) { -- cgit v1.2.3