Skip to content

Commit b026e5e

Browse files
author
Christopher Doris
committed
fix typos in documentation
1 parent 59f0da1 commit b026e5e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/src/compat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ PythonCall.fix_qt_plugin_path
6060
## IPython
6161

6262
The `juliacall.ipython` IPython extension adds these features to your IPython session:
63-
- The line magic `%jl code` executes the given Julia code in-line.
64-
- The cell magic `%%jl` executes a cell of Julia code.
63+
- The line magic `%julia code` executes the given Julia code in-line.
64+
- The cell magic `%%julia` executes a cell of Julia code.
6565
- Julia's `stdout` and `stderr` are redirected to IPython.
6666
- Calling `display(x)` from Julia will display `x` in IPython.
6767

docs/src/releasenotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* Adds `PythonCall.GC.disable()` and `PythonCall.GC.enable()`.
4343
* Experimental new function `juliacall.interactive()` allows the Julia async event loop to
4444
run in the background of the Python REPL.
45-
* Experimental new IPython extension `juliacall.ipython` providing the `%jl` and `%%jl`
45+
* Experimental new IPython extension `juliacall.ipython` providing the `%julia` and `%%julia`
4646
magics for executing Julia code.
4747
* Experimental new module `juliacall.importer` allowing you to write Python modules in
4848
Julia.

pysrc/juliacall/ipython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
Enable the extension by calling the magic '%load_ext juliacall.ipython'.
77
88
Features:
9-
- Magic `%jl code` to evaluate a piece of Julia code in-line.
10-
- Cell magic `%%jl` to evaluate a cell of Julia code.
9+
- Magic `%julia code` to evaluate a piece of Julia code in-line.
10+
- Cell magic `%%julia` to evaluate a cell of Julia code.
1111
- Julia's stdin and stdout are redirected to Python's stdin and stdout.
1212
- Calling Julia's 'display(x)' function will display 'x' in IPython.
1313
"""

0 commit comments

Comments
 (0)