Merge pull request #5400 from jbampton/fix-spelling

chore: fix spelling
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-04-09 22:07:50 +09:00
committed by GitHub
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -211,7 +211,7 @@ is_code_block_open(struct mrb_parser_state *parser)
/* an expression was ended */
break;
case EXPR_ENDARG:
/* closing parenthese */
/* closing parenthesis */
break;
case EXPR_ENDFN:
/* definition end */
+1 -1
View File
@@ -524,7 +524,7 @@ assert('IO#close_on_exec') do
fd = IO.sysopen $mrbtest_io_wfname, "w"
io = IO.new fd, "w"
begin
# IO.sysopen opens a file descripter with O_CLOEXEC flag.
# IO.sysopen opens a file descriptor with O_CLOEXEC flag.
assert_true io.close_on_exec?
rescue ScriptError
io.close