diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-02 15:53:48 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-02 15:53:48 +0000 |
commit | a4209572de70242c16e99d301f8de6e880ecb908 (patch) | |
tree | 3d14d06e61d0b7da9b5bd9e15d399740e511a463 /vm_core.h | |
parent | 1849a2baf1823c7620b1d59b5924cc74211a68ce (diff) |
* insns.def, vm_core.h: fixed typo. reported by Rocky Bernstein
<rockyb AT rubyforge.org> at [ruby-core:31596].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r-- | vm_core.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -34,7 +34,7 @@ #ifndef ENABLE_VM_OBJSPACE #ifdef _WIN32 /* - * TODO: object space indenpendent st_table. + * TODO: object space independent st_table. * socklist needs st_table in rb_w32_sysinit(), before object space * initialization. * It is too early now to change st_hash_type, since it breaks binary @@ -166,7 +166,7 @@ struct rb_iseq_struct { VALUE name; /* String: iseq name */ VALUE filename; /* file information where this sequence from */ VALUE filepath; /* real file path or nil */ - VALUE *iseq; /* iseq (insn number and openrads) */ + VALUE *iseq; /* iseq (insn number and operands) */ VALUE *iseq_encoded; /* encoded iseq */ unsigned long iseq_size; VALUE mark_ary; /* Array: includes operands which should be GC marked */ @@ -190,7 +190,7 @@ struct rb_iseq_struct { * argument information * * def m(a1, a2, ..., aM, # mandatory - * b1=(...), b2=(...), ..., bN=(...), # optinal + * b1=(...), b2=(...), ..., bN=(...), # optional * *c, # rest * d1, d2, ..., dO, # post * &e) # block |