Skip to content

Commit 24453e2

Browse files
committed
Fix more typos
1 parent 31df004 commit 24453e2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Matplotlib 3rd Party Package Cookiecutter
22

3-
Turn your matplotlib scripts into a sharable python package using this
3+
Turn your matplotlib scripts into a shareable python package using this
44
[cookiecutter](https://cookiecutter.readthedocs.io/en/1.7.2/) recipe:
55

66
```
@@ -39,7 +39,7 @@ Readthedocs is a website that hosts the docs for many projects in the Python eco
3939
You can also have readthedocs make test builds on PRs by following the instructions here: https://docs.readthedocs.io/en/latest/pull-requests.html
4040
## Setting up tests
4141

42-
The best way to do testing for a Matplotlib extension is to use [pytest-mpl](https://github.com/matplotlib/pytest-mpl#about). This project inclues a basic test, but does not pregenerate any baselines images. To make the example test work you first need to generate the baseline with:
42+
The best way to do testing for a Matplotlib extension is to use [pytest-mpl](https://github.com/matplotlib/pytest-mpl#about). This project includes a basic test, but does not pregenerate any baselines images. To make the example test work you first need to generate the baseline with:
4343

4444
```
4545
pytest --mpl-generate-path=<package-name>/tests/baseline
@@ -53,7 +53,7 @@ Once you've made your package other people will likely want to use your hard wor
5353

5454
1. Make a PR to add it to Matplotlib's 3rd party packages page:
5555
- https://matplotlib.org/mpl-third-party/
56-
2. Tweet about your pacakge and and mention `@matplotlib` for a retweet.
56+
2. Tweet about your package and and mention `@matplotlib` for a retweet.
5757

5858

5959
## Miscellaneous Advice
@@ -108,7 +108,7 @@ To do this you will need to generate a PyPI api token and add it to your reposit
108108

109109
**Generating an api token**
110110

111-
Go to you [PyPI account setttings](https://pypi.org/manage/account/), scroll down to the API tokens section and select "Add API token".
111+
Go to you [PyPI account settings](https://pypi.org/manage/account/), scroll down to the API tokens section and select "Add API token".
112112

113113
**Adding api token to Github Secrets**
114114
Once you've have copied the token from PyPI go the `Secrets` section of your Github repo's settings and add the token with the name `PYPI_API_TOKEN`

cookiecutter.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"github_organization_name": "",
55
"github_project_name": "",
66
"python_package_name": "{{ cookiecutter.github_project_name | replace('-', '_') }}",
7-
"project_short_description": "A 3rd party packge for Matplotlib",
7+
"project_short_description": "A 3rd party package for Matplotlib",
88
"year": "2021",
99
"_copy_without_render": [
1010
".github/workflows/*"

0 commit comments

Comments
 (0)