diff options
author | Mark Rushakoff <mark.rushakoff@gmail.com> | 2012-05-27 08:25:00 -0700 |
---|---|---|
committer | Mark Rushakoff <mark.rushakoff@gmail.com> | 2012-05-27 08:25:00 -0700 |
commit | d138921cece0c4923849ff61100fcce56e98e967 (patch) | |
tree | 178684c7c087476dd70c843582d12b832adc4787 /activerecord | |
parent | 490b52ee8e9110d2cc484c3ef420af37c381e94b (diff) | |
download | rails-d138921cece0c4923849ff61100fcce56e98e967.tar.gz rails-d138921cece0c4923849ff61100fcce56e98e967.tar.bz2 rails-d138921cece0c4923849ff61100fcce56e98e967.zip |
"a sql" -> "an SQL" per API documentation guidelines
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/relation/calculations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/calculations.rb b/activerecord/lib/active_record/relation/calculations.rb index 31d99f0192..ab32bfe70a 100644 --- a/activerecord/lib/active_record/relation/calculations.rb +++ b/activerecord/lib/active_record/relation/calculations.rb @@ -118,7 +118,7 @@ module ActiveRecord # Person.all.map(&:name) # # Pluck returns an <tt>Array</tt> of attribute values type-casted to match - # the plucked column name, if it can be deduced. Plucking a SQL fragment + # the plucked column name, if it can be deduced. Plucking an SQL fragment # returns String values by default. # # Examples: |