aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar AtieP <[email protected]>2020-08-13 16:22:07 +0200
committerGravatar GitHub <[email protected]>2020-08-13 16:22:07 +0200
commit601e6824e004ac4886eb6dde5e8d0b933dc389ed (patch)
tree52d940a9f00020d14c36b7262fd360247675a248
parentMerge pull request #1097 from Numerlor/remove-api-endpoints (diff)
Fix typo on the traceback tag
See issue #1101
-rw-r--r--bot/resources/tags/traceback.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/traceback.md b/bot/resources/tags/traceback.md
index 46ef40aa1..e770fa86d 100644
--- a/bot/resources/tags/traceback.md
+++ b/bot/resources/tags/traceback.md
@@ -11,7 +11,7 @@ ZeroDivisionError: integer division or modulo by zero
```
The best way to read your traceback is bottom to top.
-• Identify the exception raised (e.g. ZeroDivisonError)
+• Identify the exception raised (e.g. ZeroDivisionError)
• Make note of the line number, and navigate there in your program.
• Try to understand why the error occurred.