diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-08-31 23:38:03 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-08-31 23:38:03 +0000 |
commit | e278b72bf3238353906a6cb928410aaf712556f4 (patch) | |
tree | 85dbb9c80616f58d374f79194cf2fd414e681697 /railties/README | |
parent | f9b369487046020bcdb92a3985270c9fb9943382 (diff) | |
download | rails-e278b72bf3238353906a6cb928410aaf712556f4.tar.gz rails-e278b72bf3238353906a6cb928410aaf712556f4.tar.bz2 rails-e278b72bf3238353906a6cb928410aaf712556f4.zip |
Fixed a few find_alls
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4888 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/README')
-rw-r--r-- | railties/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/README b/railties/README index 7d8965e6bd..916b21e6f5 100644 --- a/railties/README +++ b/railties/README @@ -90,7 +90,7 @@ and change the model, AND then resume execution! Example: class WeblogController < ActionController::Base def index - @posts = Post.find_all + @posts = Post.find(:all) breakpoint "Breaking out from the list" end end |