##// END OF EJS Templates
Fix small typos: an -> and and function -> functions
Danny Hermes -
Show More
@@ -1,23 +1,23 b''
1 1 =======================
2 2 Built-in magic commands
3 3 =======================
4 4
5 5 .. note::
6 6
7 7 To Jupyter users: Magics are specific to and provided by the IPython kernel.
8 8 Whether Magics are available on a kernel is a decision that is made by
9 9 the kernel developer on a per-kernel basis. To work properly, Magics must
10 10 use a syntax element which is not valid in the underlying language. For
11 11 example, the IPython kernel uses the `%` syntax element for Magics as `%`
12 12 is not a valid unary operator in Python. However, `%` might have meaning in
13 13 other languages.
14 14
15 15 Here is the help auto-generated from the docstrings of all the available Magics
16 function that IPython ships with.
16 functions that IPython ships with.
17 17
18 You can create an register your own Magics with IPython. You can find many user
18 You can create and register your own Magics with IPython. You can find many user
19 19 defined Magics on `PyPI <https://pypi.io>`_. Feel free to publish your own and
20 20 use the ``Framework :: IPython`` trove classifier.
21 21
22 22
23 23 .. include:: magics-generated.txt
General Comments 0
You need to be logged in to leave comments. Login now