aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2020-03-04 18:37:11 +1000
committerGravatar GitHub <[email protected]>2020-03-04 18:37:11 +1000
commit8942d310c553a2ebd50c130335559ac5cd35ca41 (patch)
tree1ef163422c2b73d84306d0610066dc5a50ebfb86 /CONTRIBUTING.md
parentMerge pull request #815 from python-discord/watchchannel-dm (diff)
parentMerge branch 'master' into feat/deps/o138/pre-commit-hooks (diff)
Merge pull request #811 from python-discord/feat/deps/o138/pre-commit-hooks
Add more pre-commit hooks and run them in CI
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 39f76c7b4..61d11f844 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -43,7 +43,7 @@ To provide a standalone development environment for this project, docker compose
When pulling down changes from GitHub, remember to sync your environment using `pipenv sync --dev` to ensure you're using the most up-to-date versions the project's dependencies.
### Type Hinting
-[PEP 484](https://www.python.org/dev/peps/pep-0484/) formally specifies type hints for Python functions, added to the Python Standard Library in version 3.5. Type hints are recognized by most modern code editing tools and provide useful insight into both the input and output types of a function, preventing the user from having to go through the codebase to determine these types.
+[PEP 484](https://www.python.org/dev/peps/pep-0484/) formally specifies type hints for Python functions, added to the Python Standard Library in version 3.5. Type hints are recognized by most modern code editing tools and provide useful insight into both the input and output types of a function, preventing the user from having to go through the codebase to determine these types.
For example: