aboutsummaryrefslogtreecommitdiffstats
path: root/railties/README
diff options
context:
space:
mode:
Diffstat (limited to 'railties/README')
-rw-r--r--railties/README2
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