]> sipb.mit.edu Git - ikiwiki.git/commitdiff
clarify further
authorsmcv <smcv@web>
Wed, 10 Sep 2014 08:43:01 +0000 (04:43 -0400)
committeradmin <admin@branchable.com>
Wed, 10 Sep 2014 08:43:01 +0000 (04:43 -0400)
doc/todo/calendar_autocreate.mdwn

index 8e6a1a0d0c399dcc459492213862a470779e1dbd..2a7350b79ef3656ac4f334d3415f6a8fdf4d378b 100644 (file)
@@ -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]]