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 /guides | |
parent | d69c7e66b3a9527c7d1e2e856850f7ce63b80ae7 (diff) | |
download | rails-8a74190121345083ebef1d81bf0c0129b40b33e9.tar.gz rails-8a74190121345083ebef1d81bf0c0129b40b33e9.tar.bz2 rails-8a74190121345083ebef1d81bf0c0129b40b33e9.zip |
Tiny documentation edits [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
1 files changed, 1 insertions, 1 deletions
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 |