]> source.dussan.org Git - redmine.git/commitdiff
fix typos in lib/redmine/hook.rb (#9291)
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 21 Sep 2011 09:47:31 +0000 (09:47 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 21 Sep 2011 09:47:31 +0000 (09:47 +0000)
Contributed by Igor Zubkov.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7432 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/hook.rb

index 7b06dc99f89ac11ee4a21fc6cdb49be67cce4390..5146ccbb8a1b1226b6ed180aa49c2c7e18c4e0fe 100644 (file)
@@ -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: