aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/2_3_release_notes.md
diff options
context:
space:
mode:
authorSunny Ripert <sunny@sunfox.org>2013-05-28 14:36:18 +0200
committerSunny Ripert <sunny@sunfox.org>2013-05-28 14:38:02 +0200
commit70b302b189dbe9f90e3b081fa540c909a43ba8d0 (patch)
treeb76527e12288ea06fc87695ebd9a7e8d45aff342 /guides/source/2_3_release_notes.md
parent606c09b8dbaa65ab124baaa0ee62a885a25a2222 (diff)
downloadrails-70b302b189dbe9f90e3b081fa540c909a43ba8d0.tar.gz
rails-70b302b189dbe9f90e3b081fa540c909a43ba8d0.tar.bz2
rails-70b302b189dbe9f90e3b081fa540c909a43ba8d0.zip
Remove double spaces in code examples
Diffstat (limited to 'guides/source/2_3_release_notes.md')
-rw-r--r--guides/source/2_3_release_notes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/2_3_release_notes.md b/guides/source/2_3_release_notes.md
index 3c08f148cf..73be6254ab 100644
--- a/guides/source/2_3_release_notes.md
+++ b/guides/source/2_3_release_notes.md
@@ -173,8 +173,8 @@ before_save :update_credit_rating, :if => :active,
Rails now has a `:having` option on find (as well as on `has_many` and `has_and_belongs_to_many` associations) for filtering records in grouped finds. As those with heavy SQL backgrounds know, this allows filtering based on grouped results:
```ruby
-developers = Developer.find(:all, :group => "salary",
- :having => "sum(salary) > 10000", :select => "salary")
+developers = Developer.find(:all, :group => "salary",
+ :having => "sum(salary) > 10000", :select => "salary")
```
* Lead Contributor: [Emilio Tagua](http://github.com/miloops)