Skip to content

Commit

Permalink
Add missing punctuation mark [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav2728 committed Nov 18, 2015
1 parent 153d7ca commit 762f7da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions actionpack/lib/abstract_controller/base.rb
Expand Up @@ -49,7 +49,7 @@ def inherited(klass) # :nodoc:
# instance methods on that abstract class. Public instance methods of
# a controller would normally be considered action methods, so methods
# declared on abstract classes are being removed.
# (ActionController::Metal and ActionController::Base are defined as abstract)
# (<tt>ActionController::Metal</tt> and ActionController::Base are defined as abstract)
def internal_methods
controller = self

Expand Down Expand Up @@ -80,7 +80,7 @@ def action_methods

# action_methods are cached and there is sometimes need to refresh
# them. ::clear_action_methods! allows you to do that, so next time
# you run action_methods, they will be recalculated
# you run action_methods, they will be recalculated.
def clear_action_methods!
@action_methods = nil
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_controller/metal.rb
Expand Up @@ -166,7 +166,7 @@ def params=(val)

alias :response_code :status # :nodoc:

# Basic url_for that can be overridden for more robust functionality
# Basic url_for that can be overridden for more robust functionality.
def url_for(string)
string
end
Expand Down

0 comments on commit 762f7da

Please sign in to comment.