diff options
| author | 2021-07-23 08:06:06 +0700 | |
|---|---|---|
| committer | 2021-07-23 08:06:06 +0700 | |
| commit | 4fff8ff555162c3a8c99fbbb2f6c62a6366704d9 (patch) | |
| tree | 46825bd58929cee298220d59ecd06105f7ca8145 | |
| parent | Merge branch 'main' into patch-1 (diff) | |
Hyperlink fix
Co-authored-by: ChrisJL <[email protected]>
| -rw-r--r-- | bot/resources/tags/docstring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/docstring.md b/bot/resources/tags/docstring.md index cf5413f4b..31d9b239a 100644 --- a/bot/resources/tags/docstring.md +++ b/bot/resources/tags/docstring.md @@ -17,4 +17,4 @@ def greet(name, age) -> str: ``` You can get the docstring by using `.__doc__` attribute. For the last example you can get it through: `print(greet.__doc__)`. -For more details about what docstring is and it's usage check out [https://realpython.com/documenting-python-code/#docstrings-background](realpython) or [https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring](official PEP docs). +For more details about what docstring is and it's usage check out this guide by [Real Python](https://realpython.com/documenting-python-code/#docstrings-background), or the [PEP-257 docs](https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring). |