Skip to content

Commit f3e8b2c

Browse files
committed
Exceptions
1 parent 9ef5dca commit f3e8b2c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1427,11 +1427,11 @@ BaseException
14271427
#### Collections and their exceptions:
14281428
```text
14291429
+-----------+------------+------------+------------+
1430-
| | list | dict | set |
1430+
| | List | Set | Dict |
14311431
+-----------+------------+------------+------------+
1432-
| getitem() | IndexError | KeyError | |
14331432
| pop() | IndexError | KeyError | KeyError |
1434-
| remove() | ValueError | | KeyError |
1433+
| getitem() | IndexError | | KeyError |
1434+
| remove() | ValueError | KeyError | |
14351435
| index() | ValueError | | |
14361436
+-----------+------------+------------+------------+
14371437
```

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,11 +1367,11 @@
13671367
</code></pre></div>
13681368

13691369
<div><h4 id="collectionsandtheirexceptions">Collections and their exceptions:</h4><pre><code class="text language-text">┏━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓
1370-
┃ │ listdictset
1370+
┃ │ ListSet Dict
13711371
┠───────────┼────────────┼────────────┼────────────┨
1372-
┃ getitem() │ IndexError │ KeyError │ ┃
13731372
┃ pop() │ IndexError │ KeyError │ KeyError ┃
1374-
┃ remove() │ ValueError │ │ KeyError ┃
1373+
┃ getitem() │ IndexError │ │ KeyError ┃
1374+
┃ remove() │ ValueError │ KeyError │ ┃
13751375
┃ index() │ ValueError │ │ ┃
13761376
┗━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛
13771377
</code></pre></div>

parse.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,16 +229,16 @@ const DIAGRAM_7_B =
229229

230230
const DIAGRAM_8_A =
231231
'+-----------+------------+------------+------------+\n' +
232-
'| | list | dict | set |\n' +
232+
'| | List | Set | Dict |\n' +
233233
'+-----------+------------+------------+------------+\n';
234234

235235
const DIAGRAM_8_B =
236236
'┏━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
237-
'┃ │ listdictset ┃\n' +
237+
'┃ │ ListSet Dict ┃\n' +
238238
'┠───────────┼────────────┼────────────┼────────────┨\n' +
239-
'┃ getitem() │ IndexError │ KeyError │ ┃\n' +
240239
'┃ pop() │ IndexError │ KeyError │ KeyError ┃\n' +
241-
'┃ remove() │ ValueError │ │ KeyError ┃\n' +
240+
'┃ getitem() │ IndexError │ │ KeyError ┃\n' +
241+
'┃ remove() │ ValueError │ KeyError │ ┃\n' +
242242
'┃ index() │ ValueError │ │ ┃\n' +
243243
'┗━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
244244

0 commit comments

Comments
 (0)