aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-04-23 19:18:57 +0100
committerYann Herklotz <git@yannherklotz.com>2023-04-23 19:18:57 +0100
commitbdbb75b5d7b15ff31233c9ea824395be7ac8caae (patch)
tree2ffb3f0a65376b1c6c9dcf1176018df1f573ad5c
parent4d33a90680c3d187d5c79a88a597b57f20e67697 (diff)
downloadyannherklotz.com-bdbb75b5d7b15ff31233c9ea824395be7ac8caae.tar.gz
yannherklotz.com-bdbb75b5d7b15ff31233c9ea824395be7ac8caae.zip
Add a footnote
-rw-r--r--content.org7
1 files changed, 6 insertions, 1 deletions
diff --git a/content.org b/content.org
index 6b7aa29..354cfd4 100644
--- a/content.org
+++ b/content.org
@@ -482,7 +482,7 @@ first create a simple =ymhg/incr-id= function which simply increments the last c
#+end_src
However, one problem is that if we get to an ID with a =9=, it will stop incrementing correctly and
-turn into a =:=, which will break the naming scheme. This could simply be fixed by turning the last
+turn into a =:=,[fn:1] which will break the naming scheme. This could simply be fixed by turning the last
value of the ID into a number, incrementing that, then turning it back into the original
representation. However, for the current purpose we'll just assume that manual intervention will be
required sometimes. Then, to create the function that generates an ID branching off of the current
@@ -2242,3 +2242,8 @@ version of the article.
*** 2022-06-28
- Section 2.2, ยง3 :: This section mentioned a variable =x= which should have actually been =tmp=.
+
+* Footnotes
+
+[fn:1] Thanks to Joseph Turner for refactoring the =ymhg/incr-id= function and correcting the
+description of incrementing past 9.