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

Skip to content

Commit e0b5893

Browse files
ddfishergvanrossum
authored andcommitted
Reword incremental_checker's docstring (#1881)
1 parent 856e2ee commit e0b5893

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

misc/incremental_checker.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@
77
It does so by first running mypy without incremental mode on the specified range
88
of commits to find the expected result, then rewinds back to the first commit and
99
re-runs mypy on the commits with incremental mode enabled to make sure it returns
10-
the exact same result despite the files continuously changing.
10+
the same results.
1111
12-
This script will by default, download and test mypy's repo. So, doing:
12+
This script will download and test the offical mypy repo by default. Running:
1313
1414
python3 misc/incremental_checker.py last 30
1515
16-
...is equivalent to doing
16+
is equivalent to running
1717
1818
python3 misc/incremental_checker.py last 30 \\
1919
--repo_url https://github.com/python/mypy.git \\
2020
--file-path mypy
2121
22-
You can chose to run this script against a specific commit id, or against the
22+
You can chose to run this script against a specific commit id or against the
2323
last n commits.
2424
25-
For example, to run this script against the last 30 commits, do:
25+
To run this script against the last 30 commits:
2626
2727
python3 misc/incremental_checker.py last 30
2828
29-
To run this script starting from the commit id 2a432b, do:
29+
To run this script starting from the commit id 2a432b:
3030
3131
python3 misc/incremental_checker.py commit 2a432b
3232
"""

0 commit comments

Comments
 (0)