Skip to content

Commit bfbc967

Browse files
authored
Fix typos (#335)
1 parent 89f9584 commit bfbc967

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/iruby/kernel_app.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ def run
5050
if argv.length <= 3
5151
@connection_file, @boot_file, @work_dir = argv
5252
else
53-
raise ArgumentError, "Too many comandline arguments"
53+
raise ArgumentError, "Too many commandline arguments"
5454
end
5555
else
5656
if argv.length <= 2
5757
@boot_file, @work_dir = argv
5858
else
59-
raise ArgumentError, "Too many comandline arguments"
59+
raise ArgumentError, "Too many commandline arguments"
6060
end
6161
end
6262

test/iruby/application/register_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def setup
3232
end
3333
end
3434

35-
test("IRuby warns tthe existence of the kernel in IPython's kerenls directory and executes `jupyter kernelspec install` command") do
35+
test("IRuby warns the existence of the kernel in IPython's kernels directory and executes `jupyter kernelspec install` command") do
3636
out, status = Open3.capture2e(*iruby_command("register"))
3737
assert status.success?
3838
assert_match(/^Fake Jupyter$/, out)

0 commit comments

Comments
 (0)