Skip to content

Commit bb3113e

Browse files
committed
Fix typos
1 parent a47cf88 commit bb3113e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docs/source/whatsnew/version0.9.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ New features
221221
* Gather/scatter are now implemented in the client to reduce the work load
222222
of the controller and improve performance.
223223

224-
* Complete rewrite of the IPython docuementation. All of the documentation
224+
* Complete rewrite of the IPython documentation. All of the documentation
225225
from the IPython website has been moved into docs/source as restructured
226226
text documents. PDF and HTML documentation are being generated using
227227
Sphinx.

docs/source/whatsnew/version7.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Virtualenv handling fixes:
191191

192192
- init_virtualenv now uses Pathlib :ghpull:`12548`
193193
- Fix Improper path comparison of virtualenv directories :ghpull:`13140`
194-
- Fix virtual environment user warning for lower case pathes :ghpull:`13094`
194+
- Fix virtual environment user warning for lower case paths :ghpull:`13094`
195195
- Adapt to all sorts of drive names for cygwin :ghpull:`13153`
196196

197197
New Features:
@@ -589,7 +589,7 @@ issues and pushing 8.0 forward.
589589
Here are thus some of the changes for IPython 7.20.
590590

591591
- Support for PyQt5 >= 5.11 :ghpull:`12715`
592-
- ``%reset`` remove imports more agressively :ghpull:`12718`
592+
- ``%reset`` remove imports more aggressively :ghpull:`12718`
593593
- fix the ``%conda`` magic :ghpull:`12739`
594594
- compatibility with Jedi 0.18, and bump minimum Jedi version. :ghpull:`12793`
595595

@@ -868,7 +868,7 @@ IPython.
868868
Increase Tab Completion Menu Height
869869
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
870870

871-
In terminal IPython it is possible to increase the hight of the tab-completion
871+
In terminal IPython it is possible to increase the height of the tab-completion
872872
menu. To do so set the value of
873873
:configtrait:`TerminalInteractiveShell.space_for_menu`, this will reserve more
874874
space at the bottom of the screen for various kind of menus in IPython including
@@ -1050,7 +1050,7 @@ IPython has decided to follow the informational `NEP 29
10501050
policy as to which version of (C)Python and NumPy are supported.
10511051

10521052
We thus dropped support for Python 3.5, and cleaned up a number of code path
1053-
that were Python-version dependant. If you are on 3.5 or earlier pip should
1053+
that were Python-version dependent. If you are on 3.5 or earlier pip should
10541054
automatically give you the latest compatible version of IPython so you do not
10551055
need to pin to a given version.
10561056

@@ -1117,7 +1117,7 @@ progressively enable these features by default in the next few releases, and
11171117
contribution is welcomed.
11181118

11191119
We welcome any feedback on the API. See :ref:`shell_mimerenderer` for more
1120-
informations.
1120+
information.
11211121

11221122
This is originally based on work form in :ghpull:`10610` from @stephanh42
11231123
started over two years ago, and still a lot need to be done.
@@ -1371,7 +1371,7 @@ IPython 7.3.0
13711371

13721372

13731373
IPython 7.3.0 bring several bug fixes and small improvements that you will
1374-
described bellow.
1374+
described below.
13751375

13761376
The biggest change to this release is the implementation of the ``%conda`` and
13771377
``%pip`` magics, that will attempt to install packages in the **current
@@ -1456,7 +1456,7 @@ unwillingly relying on a bug in CPython.
14561456

14571457
New Core Dev:
14581458

1459-
- We welcome Jonathan Slenders to the commiters. Jonathan has done a fantastic
1459+
- We welcome Jonathan Slenders to the committers. Jonathan has done a fantastic
14601460
work on prompt_toolkit, and we'd like to recognise his impact by giving him
14611461
commit rights. :ghissue:`11397`
14621462

docs/source/whatsnew/version8.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ IPython 8.27
4646
New release of IPython after a month off (not enough changes). We can see a few
4747
important changes for this release.
4848

49-
- autocall was beeing call getitem, :ghpull:`14486`
49+
- autocall was being call getitem, :ghpull:`14486`
5050
- Only copy files in startup dir if we just created it. :ghpull:`14497`
5151
- Fix some tests on Python 3.13 RC1 :ghpull:`14504`; this one I guess make this
5252
the first IPython release officially compatible with Python 3.13; you will
@@ -680,7 +680,7 @@ Python 3.12 changed its tokenizer to have better support for f-strings and allow
680680
This is a great new feature and performance improvement in Python 3.12.
681681

682682
Unfortunately this means the new tokenizer does not support incomplete or invalid Python which will
683-
break many features of IPython. Thus compatibility of IPython with Python 3.12 is not guarantied.
683+
break many features of IPython. Thus compatibility of IPython with Python 3.12 is not guaranteed.
684684
It is unclear to which extent IPython is affected, and whether we can/should try to still support magics, shell
685685
escape (``! ....``), ..., as well as how to do it if we can.
686686

@@ -933,7 +933,7 @@ We introduce more descriptive names for the ``%autoreload`` parameter:
933933
whitelisted by ``%aimport`` statements.
934934
- ``%autoreload all`` (also ``%autoreload 2``) - turn on autoreload for all modules except those
935935
blacklisted by ``%aimport`` statements.
936-
- ``%autoreload complete`` (also ``%autoreload 3``) - all the fatures of ``all`` but also adding new
936+
- ``%autoreload complete`` (also ``%autoreload 3``) - all the features of ``all`` but also adding new
937937
objects from the imported modules (see
938938
IPython/extensions/tests/test_autoreload.py::test_autoload_newly_added_objects).
939939

@@ -1464,7 +1464,7 @@ values in order to prevent potential Execution with Unnecessary Privileges.
14641464
Almost all version of IPython looks for configuration and profiles in current
14651465
working directory. Since IPython was developed before pip and environments
14661466
existed it was used a convenient way to load code/packages in a project
1467-
dependant way.
1467+
dependent way.
14681468

14691469
In 2022, it is not necessary anymore, and can lead to confusing behavior where
14701470
for example cloning a repository and starting IPython or loading a notebook from
@@ -2394,4 +2394,4 @@ The following attribute/methods have been removed::
23942394

23952395
------
23962396

2397-
.. [1] If this make you incomfortable feel free to not use IPython 8.23.
2397+
.. [1] If this make you uncomfortable feel free to not use IPython 8.23.

0 commit comments

Comments
 (0)