summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gilbert <tom@linuxbrit.co.uk>2005-08-05 23:09:41 +0000
committerTom Gilbert <tom@linuxbrit.co.uk>2005-08-05 23:09:41 +0000
commit41e6b1b4067994d98df1b8bcc1fb398569375322 (patch)
tree375ae5c54fe072fe70eff9c9f066477765b96485
parentfa868709e3892232cbd6f0f91ccb799ff8c1894a (diff)
that syntax confuses rdoc
-rw-r--r--lib/rbot/rfc2812.rb50
1 files changed, 25 insertions, 25 deletions
diff --git a/lib/rbot/rfc2812.rb b/lib/rbot/rfc2812.rb
index c785599c..e7e527b9 100644
--- a/lib/rbot/rfc2812.rb
+++ b/lib/rbot/rfc2812.rb
@@ -826,31 +826,31 @@ module Irc
#
# ==server events currently supported:
#
- # :created:: when the server was started
- # :yourhost:: your host details (on connection)
- # :ping:: server pings you (default handler returns a pong)
- # :nicktaken:: you tried to change nick to one that's in use
- # :badnick:: you tried to change nick to one that's invalid
- # :topic:: someone changed the topic of a channel
- # :topicinfo:: on joining a channel or asking for the topic, tells you
- # who set it and when
- # :names:: server sends list of channel members when you join
- # :welcome:: server welcome message on connect
- # :motd:: server message of the day
- # :privmsg:: privmsg, the core of IRC, a message to you from someone
- # :public:: optionally instead of getting privmsg you can hook to only
- # the public ones...
- # :msg:: or only the private ones, or both
- # :kick:: someone got kicked from a channel
- # :part:: someone left a channel
- # :quit:: someone quit IRC
- # :join:: someone joined a channel
- # :changetopic:: the topic of a channel changed
- # :invite:: you are invited to a channel
- # :nick:: someone changed their nick
- # :mode:: a mode change
- # :notice:: someone sends you a notice
- # :unknown:: any other message not handled by the above
+ # created:: when the server was started
+ # yourhost:: your host details (on connection)
+ # ping:: server pings you (default handler returns a pong)
+ # nicktaken:: you tried to change nick to one that's in use
+ # badnick:: you tried to change nick to one that's invalid
+ # topic:: someone changed the topic of a channel
+ # topicinfo:: on joining a channel or asking for the topic, tells you
+ # who set it and when
+ # names:: server sends list of channel members when you join
+ # welcome:: server welcome message on connect
+ # motd:: server message of the day
+ # privmsg:: privmsg, the core of IRC, a message to you from someone
+ # public:: optionally instead of getting privmsg you can hook to only
+ # the public ones...
+ # msg:: or only the private ones, or both
+ # kick:: someone got kicked from a channel
+ # part:: someone left a channel
+ # quit:: someone quit IRC
+ # join:: someone joined a channel
+ # changetopic:: the topic of a channel changed
+ # invite:: you are invited to a channel
+ # nick:: someone changed their nick
+ # mode:: a mode change
+ # notice:: someone sends you a notice
+ # unknown:: any other message not handled by the above
def []=(key, value)
@handlers[key] = value
end