aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmcv <smcv@web>2014-09-10 04:43:01 -0400
committeradmin <admin@branchable.com>2014-09-10 04:43:01 -0400
commit2035c2b5b429336d65b78473ac8ac1971609a79e (patch)
tree3caa81ce9b1ede4c6caed16a2a390b7569aecdb5
parentdb99afcd1829d59219ae4fea0a09229a8136e9e2 (diff)
downloadikiwiki-2035c2b5b429336d65b78473ac8ac1971609a79e.tar
ikiwiki-2035c2b5b429336d65b78473ac8ac1971609a79e.tar.gz
clarify further
-rw-r--r--doc/todo/calendar_autocreate.mdwn4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/todo/calendar_autocreate.mdwn b/doc/todo/calendar_autocreate.mdwn
index 8e6a1a0d0..2a7350b79 100644
--- a/doc/todo/calendar_autocreate.mdwn
+++ b/doc/todo/calendar_autocreate.mdwn
@@ -218,8 +218,8 @@ sub gencalendaryear {
>
> However, that whole `if` block can be omitted, and you can just use
> `$changed{$params{year}}{$params{month}} = 1;`, because Perl will automatically
-> create `$changed{$params{year}}` as a reference to an empty hash, in order to
-> put the pair `$params{month} => 1` in it (the term to look
+> create `$changed{$params{year}}` as a reference to an empty hash if necessary,
+> in order to put the pair `$params{month} => 1` in it (the term to look
> up if you're curious is "autovivification").
>
> --[[smcv]]