Skip to content

Various typo corrections #370

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 10, 2025
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
2 changes: 1 addition & 1 deletion lib/iruby/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def register_kernel(argv)
end

if ipython_dir
File.join(ipython_dir, 'kerenels')
File.join(ipython_dir, 'kernels')
else
Jupyter.kernelspec_dir
end
Expand Down
2 changes: 1 addition & 1 deletion lib/iruby/display.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Display
"text/markdown" => :to_markdown,
"image/svg+xml" => :to_svg,
"image/png" => :to_png,
"appliation/pdf" => :to_pdf,
"application/pdf" => :to_pdf,
"image/jpeg" => :to_jpeg,
"text/latex" => [:to_latex, :to_tex],
# NOTE: Do not include the entry of "application/json" because
Expand Down
2 changes: 1 addition & 1 deletion lib/iruby/session_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def self.select_adapter_class(name=nil)
end
end
if name == 'cztop'
warn "WARNING: cztop was deprecated and will be removed; Use ffi-rzmq, instead."
warn "WARNING: cztop is deprecated and will be removed; Use ffi-rzmq instead."
end
return cls
end
Expand Down
2 changes: 1 addition & 1 deletion run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -ex

export PYTHON=python3

ADAPTERS="cztop ffi-rzmq pyzmq"
ADAPTERS="cztop ffi-rzmq"

for adapter in $ADAPTERS; do
export IRUBY_TEST_SESSION_ADAPTER_NAME=$adapter
Expand Down
2 changes: 1 addition & 1 deletion test/integration_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def wait_prompt
end

def test_interaction
omit("This test too much unstable")
omit("This test is too unstable")

write '"Hello, world!"'
expect '"Hello, world!"'
Expand Down
Loading