summaryrefslogtreecommitdiff
path: root/lib/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-01-30 19:28:59 +0100
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2009-01-30 19:28:59 +0100
commit152b9e19975942341b77c94bc3765cbee6be24f8 (patch)
tree5ffb2b043dcc0e85fbe7b9c024ff2311283500dd /lib/rbot
parent36f1f28e668919dfab75c8fc4d1020abad351bd1 (diff)
* (registry) rdoc fix
A stupid missing hash sign prevented the full registry accessor doc from being parsed by rdoc.
Diffstat (limited to 'lib/rbot')
-rw-r--r--lib/rbot/registry.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/registry.rb b/lib/rbot/registry.rb
index b85a6224..2ea2e578 100644
--- a/lib/rbot/registry.rb
+++ b/lib/rbot/registry.rb
@@ -100,7 +100,7 @@ class Bot
# blah = @registry[:blah]
# blah[:foo] = "flump"
# @registry[:blah] = blah
-
+ #
# If you don't need to store objects, and strictly want a persistant hash of
# strings, you can override the store/restore methods to suit your needs, for
# example (in your plugin):