aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_record_querying.textile
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-12-23 14:53:26 +1000
committerRyan Bigg <radarlistener@gmail.com>2010-12-23 14:53:26 +1000
commitf411451ed513d982a2a14e62c38f030a3560ea42 (patch)
tree7bfe52e5a6f27d24c78e4690fc52215e486ca6f7 /railties/guides/source/active_record_querying.textile
parent28b1642561cddc1f8650f7a8c740ece259db913b (diff)
downloadrails-f411451ed513d982a2a14e62c38f030a3560ea42.tar.gz
rails-f411451ed513d982a2a14e62c38f030a3560ea42.tar.bz2
rails-f411451ed513d982a2a14e62c38f030a3560ea42.zip
Remove comma [samuelkadoph]
Diffstat (limited to 'railties/guides/source/active_record_querying.textile')
-rw-r--r--railties/guides/source/active_record_querying.textile2
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