diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-03-19 15:36:33 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-03-19 15:36:33 -0400 |
commit | 10f8a2c85841d5884ccee096145498af96f06f05 (patch) | |
tree | 6b5abb18a257b76180c1aa4daac032057d3f4e24 | |
parent | bbe1f2e493f009b49aba6ab83304f9484e37c61d (diff) |
improve comments
-rw-r--r-- | IkiWiki/Setup/Standard.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/IkiWiki/Setup/Standard.pm b/IkiWiki/Setup/Standard.pm index 92e97c4b4..33b578e12 100644 --- a/IkiWiki/Setup/Standard.pm +++ b/IkiWiki/Setup/Standard.pm @@ -1,6 +1,4 @@ #!/usr/bin/perl -# Standard ikiwiki setup module. -# Parameters to import should be all the standard ikiwiki config stuff. package IkiWiki::Setup::Standard; @@ -8,6 +6,7 @@ use warnings; use strict; use IkiWiki; +# Parameters to import should be all the standard ikiwiki config, in a hash. sub import { IkiWiki::Setup::merge($_[1]); } |