Skip to content

Commit e69e265

Browse files
authored
Merge pull request #11731 from cnpryer/docs-fix
2 parents 729032d + 950522e commit e69e265

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/html/development/architecture/overview.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Things pip does:
2424
backwards compatibility reasons. But thing with setuptools:
2525
has a ``setup.py`` file that it invokes to …… get info?
2626

27-
2. Decides where to install stuff. Once the package is built, resulting
28-
artifact is then installed into system in appropriate place. :pep:`517`
29-
defines interface between build backend & installer.
27+
2. Decides where to install stuff. Once the package is built, the resulting
28+
artifact is then installed to the system in its appropriate place. :pep:`517`
29+
defines the interface between the build backend & installer.
3030

3131
Broad overview of flow
3232
======================
@@ -111,24 +111,24 @@ The package index gives pip a list of files for that package (via the existing P
111111

112112
pip chooses from the list a single file to download.
113113

114-
It may go back and choose another file to download
114+
It may go back and choose another file to download.
115115

116116
When pip looks at the package index, the place where it looks has
117-
basically a link. The link’s text is the name of the file
117+
basically a link. The link’s text is the name of the file.
118118

119119
This is the `PyPI Simple API`_ (PyPI has several APIs, some are being
120120
deprecated). pip looks at Simple API, documented initially at :pep:`503` --
121121
packaging.python.org has PyPA specifications with more details for
122-
Simple Repository API
122+
Simple Repository API.
123123

124-
For this package name -- this is the list of files available
124+
For this package name -- this is the list of files available.
125125

126126
Looks there for:
127127

128128
* The list of filenames
129129
* Other info
130130

131-
Once it has those, selects one file, downloads it
131+
Once it has those, it selects one file and downloads it.
132132

133133
(Question: If I want to ``pip install flask``, I think the whole list of filenames
134134
cannot….should not be …. ? I want only the Flask …. Why am I getting the

docs/html/user_guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ As noted previously, pip is a command line program. While it is implemented in
800800
Python, and so is available from your Python code via ``import pip``, you must
801801
not use pip's internal APIs in this way. There are a number of reasons for this:
802802

803-
#. The pip code assumes that is in sole control of the global state of the
803+
#. The pip code assumes that it is in sole control of the global state of the
804804
program.
805805
pip manages things like the logging system configuration, or the values of
806806
the standard IO streams, without considering the possibility that user code

0 commit comments

Comments
 (0)