From db166290088fb7d39d01f68b9860253893d4f1a7 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 20 Dec 2019 09:19:39 +0900 Subject: Fixed misspellings Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec. --- iseq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iseq.c') diff --git a/iseq.c b/iseq.c index f5f8437882..cbf62176bd 100644 --- a/iseq.c +++ b/iseq.c @@ -932,7 +932,7 @@ iseq_load(VALUE data, const rb_iseq_t *parent, VALUE opt) iseq_type = iseq_type_from_sym(type); if (iseq_type == (enum iseq_type)-1) { - rb_raise(rb_eTypeError, "unsupport type: :%"PRIsVALUE, rb_sym2str(type)); + rb_raise(rb_eTypeError, "unsupported type: :%"PRIsVALUE, rb_sym2str(type)); } node_id = rb_hash_aref(misc, ID2SYM(rb_intern("node_id"))); @@ -3404,7 +3404,7 @@ iseqw_s_load_from_binary_extra_data(VALUE self, VALUE str) * To lookup the lineno of insn4, calculate rank("10100001", 8) = 3, so * the line (B) is the entry in question. * - * A naive implementatoin of succinct bit-vector works really well + * A naive implementation of succinct bit-vector works really well * not only for large size but also for small size. However, it has * tiny overhead for very small size. So, this implementation consist * of two parts: one part is the "immediate" table that keeps rank result -- cgit v1.2.3