aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/meta_debugs.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2024-01-21 01:15:34 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2024-01-25 12:58:32 -0500
commit10a66c974537dcb984217a6c581fc20fa7144db4 (patch)
tree0305f1574d2a37f3d2667ba541e473f11908ba71 /org/meta_debugs.org
parentorg, ocda (ongoing) (diff)
org, ocda (ongoing) split file, separate functions
Diffstat (limited to 'org/meta_debugs.org')
-rw-r--r--org/meta_debugs.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/org/meta_debugs.org b/org/meta_debugs.org
index a0e07b7..0ec9599 100644
--- a/org/meta_debugs.org
+++ b/org/meta_debugs.org
@@ -346,15 +346,15 @@ debug(toc_nav_dom) {
}
#+END_SRC
-*** decendants
+*** descendants
#+NAME: meta_output_debugs
#+BEGIN_SRC d
-debug(decendants) {
+debug(descendants) {
foreach (sect; doc_matters.has.keys_seq.scroll) {
foreach (obj; contents[sect]) {
if (obj.metainfo.is_a == "heading") {
- writeln(obj.metainfo.ocn, " .. ", obj.metainfo.last_decendant_ocn);
+ writeln(obj.metainfo.ocn, " .. ", obj.metainfo.last_descendant_ocn);
}
}
}