summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/inline.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-26 14:43:47 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-26 14:43:47 -0400
commit49e86d2562dafdfcff4d3ba0d75f80ff0d734b95 (patch)
treefbb400b8a04f66c69ded8309092301428890f88f /IkiWiki/Plugin/inline.pm
parentabab46f983118e42e7780670812db54162c33e06 (diff)
turn booleans into questions
Diffstat (limited to 'IkiWiki/Plugin/inline.pm')
-rw-r--r--IkiWiki/Plugin/inline.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
index 4d96001ed..f8150fd72 100644
--- a/IkiWiki/Plugin/inline.pm
+++ b/IkiWiki/Plugin/inline.pm
@@ -50,28 +50,28 @@ sub getsetup () { #{{{
rss => {
type => "boolean",
default => 0,
- description => "enable rss feeds by default",
+ description => "enable rss feeds by default?",
safe => 1,
rebuild => 1,
},
atom => {
type => "boolean",
default => 0,
- description => "enable atom feeds by default",
+ description => "enable atom feeds by default?",
safe => 1,
rebuild => 1,
},
allowrss => {
type => "boolean",
default => 0,
- description => "allow rss feeds to be used",
+ description => "allow rss feeds to be used?",
safe => 1,
rebuild => 1,
},
allowatom => {
type => "boolean",
default => 0,
- description => "allow atom feeds to be used",
+ description => "allow atom feeds to be used?",
safe => 1,
rebuild => 1,
},