summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;