Skip to content

Commit 99b2aae

Browse files
chore: fix typos
Typos were identified by google.jules and manually reviewed for correctness
1 parent 65d2c51 commit 99b2aae

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Doc/bugs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Python is a mature programming language which has established a reputation for
88
stability. In order to maintain this reputation, the developers would like to
99
know of any deficiencies you find in Python.
1010

11-
It can be sometimes faster to fix bugs yourself and contribute patches to
12-
Python as it streamlines the process and involves less people. Learn how to
11+
It can sometimes be faster to fix bugs yourself and contribute patches to
12+
Python as it streamlines the process and involves fewer people. Learn how to
1313
:ref:`contribute <contributing-to-python>`.
1414

1515
Documentation bugs

Doc/c-api/init.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ Initializing and finalizing the interpreter
425425
426426
Note that Python will do a best effort at freeing all memory allocated by the Python
427427
interpreter. Therefore, any C-Extension should make sure to correctly clean up all
428-
of the preveiously allocated PyObjects before using them in subsequent calls to
428+
of the previously allocated PyObjects before using them in subsequent calls to
429429
:c:func:`Py_Initialize`. Otherwise it could introduce vulnerabilities and incorrect
430430
behavior.
431431

Lib/_py_warnings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _set_module(module):
3333
# - a class representing the warning category
3434
# - a compiled regex that must match the module that is being warned
3535
# - a line number for the line being warning, or 0 to mean any line
36-
# If either if the compiled regexs are None, match anything.
36+
# If either of the compiled regexs are None, match anything.
3737
filters = []
3838

3939

Mac/BuildScript/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package. This format is deprecated and is no longer supported by modern
1212
macOS systems; it is usable on macOS 10.6 and earlier systems.
1313
To be usable on newer versions of macOS, the bits in the bundle package
1414
must be assembled in a macOS flat installer package, using current
15-
versions of the pkgbuild and productbuild utilities. To pass macoS
15+
versions of the pkgbuild and productbuild utilities. To pass macOS
1616
Gatekeeper download quarantine, the final package must be signed
1717
with a valid Apple Developer ID certificate using productsign.
1818
Starting with macOS 10.15 Catalina, Gatekeeper now also requires

Misc/rhel7/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ command.
1212
sudo yum install pkgconfig 'tcl-devel >= 8.5.12' 'tk-devel >= 8.5.12' openssl11-devel
1313
```
1414

15-
The run `configure` with `PKG_CONFIG_PATH` environment variable.
15+
Then run `configure` with `PKG_CONFIG_PATH` environment variable.
1616

1717
```shell
1818
PKG_CONFIG_PATH=Misc/rhel7 ./configure -C

Modules/_abc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ _abc._abc_register
549549
subclass: object
550550
/
551551
552-
Internal ABC helper for subclasss registration. Should be never used outside abc module.
552+
Internal ABC helper for subclass registration. Should be never used outside abc module.
553553
[clinic start generated code]*/
554554

555555
static PyObject *

iOS/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ automatic breakpoints can be inconvenient. However, they can be disabled by
359359
creating a symbolic breakpoint that is triggered at the start of the test run.
360360

361361
Select "Debug > Breakpoints > Create Symbolic Breakpoint" from the Xcode menu, and
362-
populate the new brewpoint with the following details:
362+
populate the new breakpoint with the following details:
363363

364364
* **Name**: IgnoreSignals
365365
* **Symbol**: UIApplicationMain

0 commit comments

Comments
 (0)