summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--insns.def2
-rw-r--r--version.h4
-rw-r--r--vm_core.h6
4 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index bbf0672740..fae768a87c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Aug 3 00:53:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * insns.def, vm_core.h: fixed typo. reported by Rocky Bernstein
+ <rockyb AT rubyforge.org> at [ruby-core:31596].
+
Mon Aug 2 21:51:16 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.c (ruby_init_loadpath_safe): rb_str_set_len modifies ptr
diff --git a/insns.def b/insns.def
index f75007dca2..fcd97ae613 100644
--- a/insns.def
+++ b/insns.def
@@ -15,7 +15,7 @@
instruction form:
DEFINE_INSN
- instrunction_name
+ instruction_name
(instruction_operands, ..)
(pop_values, ..)
(return value)
diff --git a/version.h b/version.h
index 5648af5006..cd7baa40e6 100644
--- a/version.h
+++ b/version.h
@@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.3"
-#define RUBY_RELEASE_DATE "2010-08-02"
+#define RUBY_RELEASE_DATE "2010-08-03"
#define RUBY_PATCHLEVEL -1
#define RUBY_BRANCH_NAME "trunk"
@@ -8,7 +8,7 @@
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_YEAR 2010
#define RUBY_RELEASE_MONTH 8
-#define RUBY_RELEASE_DAY 2
+#define RUBY_RELEASE_DAY 3
#include "ruby/version.h"
diff --git a/vm_core.h b/vm_core.h
index dea19fa71b..d306b9d143 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -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