aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-04-03 19:18:10 +0100
committerGravatar GitHub <[email protected]>2022-04-03 19:18:10 +0100
commit9570e9736ceed530ce6e84eb97d85e76c0e67709 (patch)
treecab4c7e1a3005b746ff7e2f987f55f4228a01c53
parentUpdate type-hint.md (diff)
Update bot/resources/tags/type-hint.md
Co-authored-by: ChrisJL <[email protected]>
-rw-r--r--bot/resources/tags/type-hint.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/type-hint.md b/bot/resources/tags/type-hint.md
index 122a12fcf..f4a12f125 100644
--- a/bot/resources/tags/type-hint.md
+++ b/bot/resources/tags/type-hint.md
@@ -16,4 +16,4 @@ The above code won't error even though it doesn't follow the function's type hin
Third party tools like [mypy](https://mypy.readthedocs.io/en/stable/introduction.html) can validate your code to ensure it is type hinted correctly. This can help you identify potentially buggy code, for example it would error on the second example as our `add` function is not intended to concatenate strings.
-[`mypy`s documentation](https://mypy.readthedocs.io/en/stable/builtin_types.html) contains useful information on type hinting, and for more information check out [this documentation page](https://typing.readthedocs.io/en/latest/index.html).
+[mypy's documentation](https://mypy.readthedocs.io/en/stable/builtin_types.html) contains useful information on type hinting, and for more information check out [this documentation page](https://typing.readthedocs.io/en/latest/index.html).