diff --git a/README.md b/README.md
index f7cf3f1..5d70849 100644
--- a/README.md
+++ b/README.md
@@ -1408,7 +1408,7 @@ BaseException
 ```
 
 #### Collections and their exceptions:
-```python
+```text
 +-----------+------------+----------+----------+
 |           |    list    |   dict   |   set    |
 +-----------+------------+----------+----------+
diff --git a/index.html b/index.html
index b545e6a..802a8c6 100644
--- a/index.html
+++ b/index.html
@@ -1309,7 +1309,7 @@ LogicOp = Enum(<span class="hljs-string">'LogicOp'</span>, {<span class="hljs-st
            +-- UnicodeError       # Raised when encoding/decoding strings from/to bytes fails.
 </code></pre></div>
 
-<div><h4 id="collectionsandtheirexceptions">Collections and their exceptions:</h4><pre><code class="python language-python hljs">+-----------+------------+----------+----------+
+<div><h4 id="collectionsandtheirexceptions">Collections and their exceptions:</h4><pre><code class="text language-text">+-----------+------------+----------+----------+
 |           |    list    |   dict   |   set    |
 +-----------+------------+----------+----------+
 | getitem() | IndexError | KeyError |          |