Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b2f71a8

Browse files
committed
Fix various typos
Found via `codespell -q 3`
1 parent 0f4a73c commit b2f71a8

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install and update Python dependencies
4040
run: |
4141
python -m pip install --upgrade -e file://$PWD#egg=ipython[test]
42-
# we must instal IPython after ipykernel to get the right versions.
42+
# we must install IPython after ipykernel to get the right versions.
4343
python -m pip install --upgrade --upgrade-strategy eager flaky ipyparallel
4444
python -m pip install --upgrade 'pytest<7'
4545
- name: pytest

IPython/core/completer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ def __init__(
11821182

11831183
# This is a list of names of unicode characters that can be completed
11841184
# into their corresponding unicode value. The list is large, so we
1185-
# laziliy initialize it on first use. Consuming code should access this
1185+
# lazily initialize it on first use. Consuming code should access this
11861186
# attribute through the `@unicode_names` property.
11871187
self._unicode_names = None
11881188

@@ -2070,7 +2070,7 @@ def _complete(self, *, cursor_line, cursor_pos, line_buffer=None, text=None,
20702070
indexed.
20712071
line_buffer : optional, str
20722072
The current line the cursor is in, this is mostly due to legacy
2073-
reason that readline coudl only give a us the single current line.
2073+
reason that readline could only give a us the single current line.
20742074
Prefer `full_text`.
20752075
text : str
20762076
The current "token" the cursor is in, mostly also for historical

IPython/extensions/tests/test_autoreload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
if platform.python_implementation() == "PyPy":
3535
pytest.skip(
36-
"Current autoreload implementation is extremly slow on PyPy",
36+
"Current autoreload implementation is extremely slow on PyPy",
3737
allow_module_level=True,
3838
)
3939

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
## Reporting a Vulnerability
44

55
All IPython and Jupyter security are handled via [email protected].
6-
You can find more informations on the Jupyter website. https://jupyter.org/security
6+
You can find more information on the Jupyter website. https://jupyter.org/security

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ matrix:
55
environment:
66
global:
77
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
8-
COLUMNS: 120 # Appveyor web viwer window width is 130 chars
8+
COLUMNS: 120 # Appveyor web viewer window width is 130 chars
99

1010
matrix:
1111
- PYTHON: "C:\\Python38"

docs/source/sphinxext.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ suppress the seed line so it doesn't show up in the rendered output
204204
[0.22591016, 0.77731835],
205205
[0.0072729 , 0.34273127]])
206206

207-
For more information on @supress and @doctest decorators, please refer to the end of this file in
207+
For more information on @suppress and @doctest decorators, please refer to the end of this file in
208208
Pseudo-Decorators section.
209209

210210
Another demonstration of multi-line input and output

tools/release_helper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ then
111111
sleep 1
112112
echo $BLUE"Saving API to file $PREV_RELEASE"$NOR
113113
frappuccino IPython IPython.kernel IPython.lib IPython.qt IPython.lib.kernel IPython.html IPython.frontend IPython.external --save IPython-$PREV_RELEASE.json
114-
echo $BLUE"comming back to $BRANCH"$NOR
114+
echo $BLUE"coming back to $BRANCH"$NOR
115115
git checkout $BRANCH
116116
sleep 1
117117
echo $BLUE"comparing ..."$NOR

0 commit comments

Comments
 (0)