diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-05-17 17:52:40 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-05-17 17:52:40 +0530 |
commit | 110a066bb4f0109f48025b84cd4b5d0695bd64ca (patch) | |
tree | 98e42c67075820f67697c3c9c5d88d2a49557a77 /actionpack | |
parent | 565865ec1c062c2a2774e2b1033f3e3da02fcd65 (diff) | |
download | rails-110a066bb4f0109f48025b84cd4b5d0695bd64ca.tar.gz rails-110a066bb4f0109f48025b84cd4b5d0695bd64ca.tar.bz2 rails-110a066bb4f0109f48025b84cd4b5d0695bd64ca.zip |
fix coding error in readme reported in rails GH #980
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/README.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/README.rdoc b/actionpack/README.rdoc index 5db4cff66b..2f3678881d 100644 --- a/actionpack/README.rdoc +++ b/actionpack/README.rdoc @@ -33,7 +33,7 @@ A short rundown of some of the major features: * Actions grouped in controller as methods instead of separate command objects and can therefore share helper methods - CustomersController < ActionController::Base + class CustomersController < ActionController::Base def show @customer = find_customer end |