summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-24 01:02:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-24 01:02:58 +0000
commit35ab341cf2dd63a98e9c86a17c2dbb5aa11f31a4 (patch)
tree62870fc52992b1f49eff464d2bf906633259084c
parentf64457180a658ede71688ed1ab2ce73fa4c4940d (diff)
Fix typo: blcok -> block
Typo in a comment about "evaluator body". [Fix GH-1824] From: hkdnet <satoko.itse@gmail.com> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--vm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm.c b/vm.c
index 71e465346f..9f2ac05691 100644
--- a/vm.c
+++ b/vm.c
@@ -1729,10 +1729,10 @@ hook_before_rewind(rb_execution_context_t *ec, const rb_control_frame_t *cfp, in
rb_iseq_t *iseq; // cfp[2], iseq
VALUE self; // cfp[3], self
const VALUE *ep; // cfp[4], env pointer
- const void *block_code; // cfp[5], blcok code
+ const void *block_code; // cfp[5], block code
};
- struct rb_captured_blcok {
+ struct rb_captured_block {
VALUE self;
VALUE *ep;
union code;