@@ -50,7 +50,7 @@ The base ``Command`` has the following methods:
50
50
51
51
.. py :method :: main()
52
52
53
- Main method of the class, its always called (as can be seen in main.py's
53
+ Main method of the class, it's always called (as can be seen in main.py's
54
54
`main <https://github.com/pypa/pip/blob/main/src/pip/_internal/cli/main.py#L46 >`_).
55
55
It's in charge of calling the specific ``run `` method of the class and handling the possible errors.
56
56
@@ -73,7 +73,7 @@ In addition to the previous classes, a last mixin class must be mentioned, from
73
73
``Command `` as well as ``SessionCommandMixin `` inherit: ``CommandContextMixIn ``, in
74
74
charge of the command's context.
75
75
76
- In the following command tree we can see the hierarchy defined for the different pip's
76
+ In the following command tree we can see the hierarchy defined for the different pip
77
77
commands, where each command is defined under the base class it inherits from:
78
78
79
79
| ``Command``
@@ -148,7 +148,7 @@ Configuration and CLI "blend"
148
148
The base ``Command `` instantiates the class `ConfigOptionParser <https://github.com/pypa/pip/blob/main/src/pip/_internal/cli/parser.py >`_
149
149
which is in charge of the parsing process (via its parent class
150
150
`optparse.OptionParser <https://docs.python.org/3/library/optparse.html#optparse.OptionParser >`_).
151
- Its main addition consists on the following function:
151
+ Its main addition consists of the following function:
152
152
153
153
.. py :class :: ConfigOptionParser(OptionParser)
154
154
@@ -158,13 +158,13 @@ Its main addition consists on the following function:
158
158
option parser.
159
159
160
160
It allows overriding the default options and arguments using the ``Configuration `` class
161
- (more information can be found on :ref: `Configuration `) to add environment variables and
162
- information from configuration files.
161
+ (more information can be found on :ref: `Configuration `) to include environment variables and
162
+ settings from configuration files.
163
163
164
164
Progress bars and spinners
165
165
--------------------------
166
166
167
- There are two more modules in the cli subpackage in charge of showing the state of the
167
+ There are two more modules in the `` cli `` subpackage in charge of showing the state of the
168
168
program.
169
169
170
170
* `progress_bars.py <https://github.com/pypa/pip/blob/main/src/pip/_internal/cli/progress_bars.py >`_
0 commit comments