aboutsummaryrefslogtreecommitdiffstats
path: root/core/plugin.rb
diff options
context:
space:
mode:
authorToshiaki Asai <toshi.alternative@gmail.com>2015-01-18 15:57:13 +0900
committerToshiaki Asai <toshi.alternative@gmail.com>2015-01-18 16:01:02 +0900
commit91458f85adfaa99d7828899a89f1c1370a95c294 (patch)
tree48c44750ef44ff53afe973a488915cefdcfe778c /core/plugin.rb
parent3baf68d2aac750e5879881fb2f3e6508248ad29c (diff)
downloadmikutter-91458f85adfaa99d7828899a89f1c1370a95c294.tar.gz
Event#call がselfを返してなかった refs #746
Diffstat (limited to 'core/plugin.rb')
-rw-r--r--core/plugin.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/plugin.rb b/core/plugin.rb
index f8828c1c..10120d75 100644
--- a/core/plugin.rb
+++ b/core/plugin.rb
@@ -36,7 +36,7 @@ class Plugin
# [event_name] イベント名
# [*args] イベントの引数
# ==== Return
- # Delayer
+ # _event_name_ に対応する Event のインスタンス
def call(event_name, *args)
type_strict event_name => Symbol
Event[event_name].call(*args) end