chiark / gitweb /
documentation/python: Häagen-Dazs?!
authorVladimír Vondruš <mosra@centrum.cz>
Sun, 7 Jul 2019 10:53:54 +0000 (12:53 +0200)
committerVladimír Vondruš <mosra@centrum.cz>
Sun, 7 Jul 2019 12:10:41 +0000 (14:10 +0200)
documentation/python.py

index 3cab6900737878b0e72811e4224725881e6f0001..acf2b65f4d206ef84e71475545651d4e499e8b37 100755 (executable)
@@ -112,7 +112,7 @@ class IndexEntry:
         self.name: str
         self.url: str
         self.summary: str
-        self.has_nestaable_children: bool = False
+        self.has_nestable_children: bool = False
         self.children: List[IndexEntry] = []
 
 class State:
@@ -1158,7 +1158,7 @@ def run(basedir, config, templates):
         state.page_index += render_page(state, [os.path.splitext(os.path.basename(page))[0]], os.path.join(config['INPUT'], page), env)
 
     # Recurse into the tree and mark every node that has nested modules with
-    # has_nestaable_children.
+    # has_nestable_children.
     def mark_nested_modules(list: List[IndexEntry]):
         has_nestable_children = False
         for i in list: