diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-21 09:47:31 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-21 09:47:31 +0000 |
commit | 8e7b0a7bac04cafdf290dbcb6243adcdb4542603 (patch) | |
tree | 444302b1737be328b99176298d6477699ad5921d /lib/redmine/hook.rb | |
parent | 7e017e6c2cc5fe5cef55b564d37f67f302d3db1b (diff) | |
download | redmine-8e7b0a7bac04cafdf290dbcb6243adcdb4542603.tar.gz redmine-8e7b0a7bac04cafdf290dbcb6243adcdb4542603.zip |
fix typos in lib/redmine/hook.rb (#9291)
Contributed by Igor Zubkov.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7432 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/hook.rb')
-rw-r--r-- | lib/redmine/hook.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/redmine/hook.rb b/lib/redmine/hook.rb index 7b06dc99f..5146ccbb8 100644 --- a/lib/redmine/hook.rb +++ b/lib/redmine/hook.rb @@ -115,17 +115,17 @@ module Redmine end end - # Helper module included in ApplicationHelper and ActionControllerso that + # Helper module included in ApplicationHelper and ActionController so that # hooks can be called in views like this: # # <%= call_hook(:some_hook) %> - # <%= call_hook(:another_hook, :foo => 'bar' %> + # <%= call_hook(:another_hook, :foo => 'bar') %> # # Or in controllers like: # call_hook(:some_hook) - # call_hook(:another_hook, :foo => 'bar' + # call_hook(:another_hook, :foo => 'bar') # - # Hooks added to views will be concatenated into a string. Hooks added to + # Hooks added to views will be concatenated into a string. Hooks added to # controllers will return an array of results. # # Several objects are automatically added to the call context: |