Skip to content

Commit 1917e81

Browse files
authored
Minor rewording
1 parent 1e60624 commit 1917e81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Tap provides the following benefits:
2222

2323
See [this poster](https://docs.google.com/presentation/d/1AirN6gpiq4P1L8K003EsXmobVxP3A4AVEIR2KOEQN7Y/edit?usp=sharing), which we presented at [PyCon 2020](https://us.pycon.org/2020/), for a presentation of some of the relevant concepts we used to guide the development of Tap.
2424

25-
As of version 1.8.0, Tap now includes `tapify`, which runs functions or initializes classes with arguments parsed from the command line. We show an example below.
25+
As of version 1.8.0, Tap includes `tapify`, which runs functions or initializes classes with arguments parsed from the command line. We show an example below.
2626

2727
```python
2828
# square.py
@@ -721,4 +721,4 @@ if __name__ == '__main__':
721721
tapify(print_age, known_only=True)
722722
```
723723

724-
Running `python person.py --name Jesse --age 1` prints `My name is Jesse.` followed by `My age is 1.`. Without `known_only=True`, the `tapify` calls would raise an error due to the extra argument.
724+
Running `python person.py --name Jesse --age 1` prints `My name is Jesse.` followed by `My age is 1.`. Without `known_only=True`, the `tapify` calls would raise an error due to the extra argument.

0 commit comments

Comments
 (0)