aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-04-29 10:12:10 -0500
committerYves Senn <yves.senn@gmail.com>2014-04-29 10:12:10 -0500
commite2e8fad260caac458191522e354915a9f184fe0a (patch)
tree233d855d52fe1e0b9e0451be2ff422a9972f8fbb
parent7763cff2981757ab6a4d5796c1d17b98a2f57f0a (diff)
downloadrails-e2e8fad260caac458191522e354915a9f184fe0a.tar.gz
rails-e2e8fad260caac458191522e354915a9f184fe0a.tar.bz2
rails-e2e8fad260caac458191522e354915a9f184fe0a.zip
cleanup, remove trailing whitespace. [ci skip]
-rw-r--r--activerecord/lib/active_record/associations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index b16983026e..265bad7bc2 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -776,7 +776,7 @@ module ActiveRecord
#
# If you want to load all posts (including posts with no approved comments) then write
# your own LEFT OUTER JOIN query using ON
- #
+ #
# Post.joins('LEFT OUTER JOIN comments ON comments.post_id = posts.id AND comments.approved = true')
#
# You must disambiguate column references for this fallback to happen, for example