aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2011-06-01 17:48:09 +0900
committerAkira Matsuda <ronnie@dio.jp>2011-06-01 17:48:09 +0900
commit90887cbb355f583931cba70adc460b88fca7395f (patch)
tree6a6c6eb921be7c8635da3a961af659591550b7d7 /railties/guides/source/getting_started.textile
parent6014e1d3258baef4e5b08a29876b7758363c2c22 (diff)
downloadrails-90887cbb355f583931cba70adc460b88fca7395f.tar.gz
rails-90887cbb355f583931cba70adc460b88fca7395f.tar.bz2
rails-90887cbb355f583931cba70adc460b88fca7395f.zip
s/a/an/
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 8a9086f416..670979c3c2 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -503,7 +503,7 @@ def index
end
</ruby>
-+Post.all+ calls the +Post+ model to return all of the posts currently in the database. The result of this call is an array of posts that we store in a instance variable called +@posts+.
++Post.all+ calls the +Post+ model to return all of the posts currently in the database. The result of this call is an array of posts that we store in an instance variable called +@posts+.
TIP: For more information on finding records with Active Record, see "Active Record Query Interface":active_record_querying.html.