From d52aa6f0d6a2e84f69fc2c45a62e4d2f953766dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 9 Aug 2019 22:13:58 +0200 Subject: [PATCH] Updated exceptions diagram --- web/script_2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/script_2.js b/web/script_2.js index b718abe..f254969 100644 --- a/web/script_2.js +++ b/web/script_2.js @@ -132,7 +132,7 @@ const DIAGRAM_8_B = " │ └── ZeroDivisionError # Raised when dividing by zero.\n" + " ├── AttributeError # Raised when an attribute is missing.\n" + " ├── EOFError # Raised by input() when it hits end-of-file condition.\n" + - " ├── LookupError # Raised when a look-up on sequence or dict fails.\n" + + " ├── LookupError # Raised when a look-up on a sequence or dict fails.\n" + " │ ├── IndexError # Raised when a sequence index is out of range.\n" + " │ └── KeyError # Raised when a dictionary key is not found.\n" + " ├── NameError # Raised when a variable name is not found.\n" +