diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-12-23 14:53:26 +1000 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-12-23 14:53:26 +1000 |
commit | f411451ed513d982a2a14e62c38f030a3560ea42 (patch) | |
tree | 7bfe52e5a6f27d24c78e4690fc52215e486ca6f7 /railties/guides | |
parent | 28b1642561cddc1f8650f7a8c740ece259db913b (diff) | |
download | rails-f411451ed513d982a2a14e62c38f030a3560ea42.tar.gz rails-f411451ed513d982a2a14e62c38f030a3560ea42.tar.bz2 rails-f411451ed513d982a2a14e62c38f030a3560ea42.zip |
Remove comma [samuelkadoph]
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/active_record_querying.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_record_querying.textile b/railties/guides/source/active_record_querying.textile index 25f3723b93..6c1042e70e 100644 --- a/railties/guides/source/active_record_querying.textile +++ b/railties/guides/source/active_record_querying.textile @@ -760,7 +760,7 @@ Or on an association consisting of +Post+ objects: <ruby> category = Category.first - category.posts.published => [published posts, belonging to this category] + category.posts.published => [published posts belonging to this category] </ruby> h4. Working with times |