aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2020-08-13 19:07:49 +0200
committerGravatar GitHub <[email protected]>2020-08-13 19:07:49 +0200
commitb27c286f2ce648d021eed0c8e07476066b86dd98 (patch)
tree52d940a9f00020d14c36b7262fd360247675a248
parentMerge pull request #1097 from Numerlor/remove-api-endpoints (diff)
parentFix typo on the traceback tag (diff)
Merge pull request #1102 from AtieP/patch-1
Fix typo on the traceback tag
-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.