]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - lib/rbot/channel.rb
Whitespace cleanup
[user/henk/code/ruby/rbot.git] / lib / rbot / channel.rb
index edd206bf3dc585262f9c79569722ed893dcd557c..34804c19c6b61e5cf8557b3222745d39a21efb4a 100644 (file)
@@ -4,23 +4,23 @@ module Irc
   class IRCChannel
     # name of channel
     attr_reader :name
-    
+
     # current channel topic
     attr_reader :topic
-    
+
     # hash containing users currently in the channel
     attr_accessor :users
-    
+
     # if true, bot won't talk in this channel
     attr_accessor :quiet
-    
+
     # name:: channel name
     # create a new IRCChannel
     def initialize(name)
       @name = name
       @users = Hash.new
       @quiet = false
-         @topic = Topic.new
+      @topic = Topic.new
     end
 
     # eg @bot.channels[chan].topic = topic