aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins/write.mdwn
diff options
context:
space:
mode:
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2013-02-24 08:43:44 -0500
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>2013-02-24 08:43:44 -0500
commitc1b0062f9969f69066ecba6ecb13cc5ee7a3ba08 (patch)
tree7105ca568b73061d99abdd1274762f1c01c5c88c /doc/plugins/write.mdwn
parent69e7323992a5f281833af3aaf471fe47f30b0ed6 (diff)
downloadikiwiki-c1b0062f9969f69066ecba6ecb13cc5ee7a3ba08.tar
ikiwiki-c1b0062f9969f69066ecba6ecb13cc5ee7a3ba08.tar.gz
Fix link, add missing backquote.
Diffstat (limited to 'doc/plugins/write.mdwn')
-rw-r--r--doc/plugins/write.mdwn4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/plugins/write.mdwn b/doc/plugins/write.mdwn
index 2b8202655..d6e6d8d1e 100644
--- a/doc/plugins/write.mdwn
+++ b/doc/plugins/write.mdwn
@@ -633,7 +633,7 @@ describes the plugin as a whole. For example:
strictly required.
* `section` can optionally specify which section in the config file
the plugin fits in. The convention is to name the sections the
- same as the tags used for [[plugins|plugin]] on this wiki.
+ same as the tags used for [[plugins]] on this wiki.
### genwrapper
@@ -684,7 +684,7 @@ wiki updates.
The `%wikistate` hash can be used by a plugin to store persistant state
that is not bound to any one page. To set a value, use
-`$wikistate{$id}{$key}=$value, where `$value` is anything Storable can
+`$wikistate{$id}{$key}=$value`, where `$value` is anything Storable can
serialize, `$key` is any string you like, and `$id` must be the same as the
"id" parameter passed to `hook()` when registering the plugin, so that the
state can be dropped if the plugin is no longer used.