Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/iruby/kernel_app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ def run
if argv.length <= 3
@connection_file, @boot_file, @work_dir = argv
else
raise ArgumentError, "Too many comandline arguments"
raise ArgumentError, "Too many commandline arguments"
end
else
if argv.length <= 2
@boot_file, @work_dir = argv
else
raise ArgumentError, "Too many comandline arguments"
raise ArgumentError, "Too many commandline arguments"
end
end

Expand Down
2 changes: 1 addition & 1 deletion test/iruby/application/register_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def setup
end
end

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