diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-03-03 21:27:17 +0100 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-03-03 21:30:20 +0100 |
commit | 8a74190121345083ebef1d81bf0c0129b40b33e9 (patch) | |
tree | 87b3f8340fec0c39969102e419feb1084fecd2b3 | |
parent | d69c7e66b3a9527c7d1e2e856850f7ce63b80ae7 (diff) | |
download | rails-8a74190121345083ebef1d81bf0c0129b40b33e9.tar.gz rails-8a74190121345083ebef1d81bf0c0129b40b33e9.tar.bz2 rails-8a74190121345083ebef1d81bf0c0129b40b33e9.zip |
Tiny documentation edits [ci skip]
-rw-r--r-- | actionpack/lib/action_controller/metal/helpers.rb | 2 | ||||
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/helpers.rb b/actionpack/lib/action_controller/metal/helpers.rb index 819837e767..4038101fe0 100644 --- a/actionpack/lib/action_controller/metal/helpers.rb +++ b/actionpack/lib/action_controller/metal/helpers.rb @@ -93,7 +93,7 @@ module ActionController super(args) end - # Return a list of helper names in specific path. + # Returns a list of helper names in a given path. # # ActionController::Base.all_helpers_from_path 'app/helpers' # # => ["application", "chart", "rubygems"] diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 9cb2efb9a2..a9715fb837 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -815,7 +815,7 @@ calling the `console` method. For example, in a controller: ```ruby -class PostController < ApplicationController +class PostsController < ApplicationController def new console @post = Post.new |