Skip to content

Commit a194b45

Browse files
authored
Correct typos in docs and code comments (pypa#13032)
Also move "Selected quotes from research participants" out of a random paragraph.
1 parent 8dbbb2e commit a194b45

File tree

12 files changed

+18
-16
lines changed

12 files changed

+18
-16
lines changed

docs/html/development/architecture/command-line-interface.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Its main addition consists of the following function:
154154
155155
.. py:method:: get_default_values()
156156
157-
Overrides the original method to allow updating the defaults ater the instantiation of the
157+
Overrides the original method to allow updating the defaults after the instantiation of the
158158
option parser.
159159

160160
It allows overriding the default options and arguments using the ``Configuration`` class

docs/html/development/architecture/overview.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Once it has those, it selects one file and downloads it.
134134
cannot….should not be …. ? I want only the Flask …. Why am I getting the
135135
whole list?
136136

137-
Answer: It's not every file, just files of Flask. No API for getting alllllll
137+
Answer: It's not every file, just files of Flask. No API for getting all
138138
files on PyPI. It’s for getting all files of Flask.)
139139

140140
.. _`tracking issue`: https://github.com/pypa/pip/issues/6831

docs/html/ux-research-design/research-results/improving-pips-documentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ _Suggested content:_
512512
_Page purpose:_
513513

514514
- To onboard people who want to contribute to pip's docs
515-
- To share previous research and recommendataions related to pip's docs
515+
- To share previous research and recommendations related to pip's docs
516516

517517
_Suggested content:_
518518

docs/html/ux-research-design/research-results/personas.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Problem
44

5-
We want to develop personas for pip's user to facilate faster user-centered decision making for the pip development team.
5+
We want to develop personas for pip's user to facilitate faster user-centered decision making for the pip development team.
66

77
[Skip to recommendations](#recommendations)
88

docs/html/ux-research-design/research-results/pip-force-reinstall.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Most respondents use `--force-reinstall` "almost never" (65.6%):
6666
![screenshot of survey question of how often users use --force-reinstall](https://i.imgur.com/fjLQUPV.png)
6767
![bar chart of how often users use --force-reinstall](https://i.imgur.com/Xe1XDkI.png)
6868

69-
Amongst respondents who said they use `--force-resinstall` often or very often:
69+
Amongst respondents who said they use `--force-reinstall` often or very often:
7070

7171
- 54.54% (6/11) of respondents thought that pip should install the same version of requests - i.e. that `--force-reinstall` should _not_ implicitly upgrade
7272
- 45.45% (5/11) of respondents thought that pip should upgrade requests to the latest version - i.e that `--force-reinstall` _should_ implicitly upgrade
@@ -76,7 +76,7 @@ Respondents find `--force-reinstall` less useful than useful:
7676
![screenshot of survey question of how useful users find --force-reinstall](https://i.imgur.com/6cv4lFn.png)
7777
![bar chart of how useful users find --force-reinstall](https://i.imgur.com/gMUBDBo.png)
7878

79-
Amongst respondents who said they find `--force-resinstall` useful or very useful:
79+
Amongst respondents who said they find `--force-reinstall` useful or very useful:
8080

8181
- 38.46% (20/52) of respondents thought that pip should install the same version of requests - i.e. that `--force-reinstall` should _not_ implicitly upgrade
8282
- 50% (26/52) of respondents thought that pip should upgrade requests to the latest version - i.e that `--force-reinstall` _should_ implicitly upgrade
@@ -89,7 +89,7 @@ In this case, we recommend showing the following message when a user tries to us
8989

9090
> Error: the pip install --force-reinstall option no longer exists. Use pip uninstall then pip install to replace up-to-date packages, or pip install --upgrade to update your packages to the latest available versions.
9191
92-
Should the pip development team wish to keep `--force-resintall`, we recommend maintaining the current (implicit upgrade) behaviour, as pip's users have not expressed a clear preference for a different behaviour.
92+
Should the pip development team wish to keep `--force-reinstall`, we recommend maintaining the current (implicit upgrade) behaviour, as pip's users have not expressed a clear preference for a different behaviour.
9393

9494
In this case, we recommend upgrading the [help text](https://pip.pypa.io/en/stable/reference/pip_install/#cmdoption-force-reinstall) to be more explicit:
9595

docs/html/ux-research-design/research-results/prioritizing-features.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ Results varied by the amount of Python experience the user had.
109109

110110
![Screenshot of Install a package from wheels](https://i.imgur.com/9DMBfNL.png)
111111

112-
#### Install apackage from a local directory
112+
#### Install a package from a local directory
113113

114-
![Screenshot of Install apackage from a local directory](https://i.imgur.com/Jp95rak.png)
114+
![Screenshot of Install a package from a local directory](https://i.imgur.com/Jp95rak.png)
115115

116116
#### Control where you want your installed package to live on your computer
117117

docs/html/ux-research-design/research-results/users-and-security.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ Both of these groups identified their "sphere of influence" and did their best t
5656

5757
### User thoughts about security
5858

59+
Selected quotes from research participants
60+
5961
#### Responsibility as author
6062

6163
Participants who spent a lot of their time writing Python code - either for community or as part of their job - expressed a responsibility to their users for the code they wrote - people who wrote code which was made public expressed a stronger responsibility.
@@ -76,8 +78,7 @@ Participants also explained they rely on code security scanning and checking sof
7678
7779
#### Reliance on good software development practices
7880

79-
A small number of participants e### Selected quotes from research participants
80-
xplained they have good software practices in place, which help with writing secure software.
81+
A small number of participants explained they have good software practices in place, which help with writing secure software.
8182

8283
> "We have a book about ethics of code - we have mandatory certification."
8384

news/13031.trivial.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Correct documentation errors.

src/pip/_internal/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]:
330330
This should be treated like items of a dictionary. The order
331331
here doesn't affect what gets overridden. That is controlled
332332
by OVERRIDE_ORDER. However this does control the order they are
333-
displayed to the user. It's probably most ergononmic to display
333+
displayed to the user. It's probably most ergonomic to display
334334
things in the same order as OVERRIDE_ORDER
335335
"""
336336
# SMELL: Move the conditions out of this function

src/pip/_internal/metadata/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _should_use_importlib_metadata() -> bool:
3030
"""Whether to use the ``importlib.metadata`` or ``pkg_resources`` backend.
3131
3232
By default, pip uses ``importlib.metadata`` on Python 3.11+, and
33-
``pkg_resourcess`` otherwise. This can be overridden by a couple of ways:
33+
``pkg_resources`` otherwise. This can be overridden by a couple of ways:
3434
3535
* If environment variable ``_PIP_USE_IMPORTLIB_METADATA`` is set, it
3636
dictates whether ``importlib.metadata`` is used, regardless of Python
@@ -71,7 +71,7 @@ def get_default_environment() -> BaseEnvironment:
7171
7272
This returns an Environment instance from the chosen backend. The default
7373
Environment instance should be built from ``sys.path`` and may use caching
74-
to share instance state accorss calls.
74+
to share instance state across calls.
7575
"""
7676
return select_backend().Environment.default()
7777

src/pip/_internal/metadata/importlib/_dists.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def read_text(self, path: InfoPath) -> str:
190190
return content
191191

192192
def iter_entry_points(self) -> Iterable[BaseEntryPoint]:
193-
# importlib.metadata's EntryPoint structure sasitfies BaseEntryPoint.
193+
# importlib.metadata's EntryPoint structure satisfies BaseEntryPoint.
194194
return self._dist.entry_points
195195

196196
def _metadata_impl(self) -> email.message.Message:

src/pip/_internal/pyproject.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def load_pyproject_toml(
7373
build_system = None
7474

7575
# The following cases must use PEP 517
76-
# We check for use_pep517 being non-None and falsey because that means
76+
# We check for use_pep517 being non-None and falsy because that means
7777
# the user explicitly requested --no-use-pep517. The value 0 as
7878
# opposed to False can occur when the value is provided via an
7979
# environment variable or config file option (due to the quirk of

0 commit comments

Comments
 (0)