aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorChris Kampmeier <chris@kampers.net>2008-10-04 00:16:29 -0700
committerChris Kampmeier <chris@kampers.net>2008-10-04 00:16:29 -0700
commitf2dee4915306e6bd1554e47640d201600ac39c41 (patch)
tree95b8ceaacb89f37a34c4af246990dc742fbf95a8 /activerecord
parentf2a713c47369ed62bbad4adfba570f5cc45707ec (diff)
downloadrails-f2dee4915306e6bd1554e47640d201600ac39c41.tar.gz
rails-f2dee4915306e6bd1554e47640d201600ac39c41.tar.bz2
rails-f2dee4915306e6bd1554e47640d201600ac39c41.zip
Fix typography and punctuation in ActiveRecord#find_by_sql
Diffstat (limited to 'activerecord')
-rwxr-xr-xactiverecord/lib/active_record/base.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index ac15eed408..6fb05b5551 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -610,8 +610,8 @@ module ActiveRecord #:nodoc:
# Executes a custom SQL query against your database and returns all the results. The results will
# be returned as an array with columns requested encapsulated as attributes of the model you call
- # this method from. If you call +Product.find_by_sql+ then the results will be returned in a Product
- # object with the attributes you specified in the SQL query.
+ # this method from. If you call <tt>Product.find_by_sql</tt> then the results will be returned in
+ # a Product object with the attributes you specified in the SQL query.
#
# If you call a complicated SQL query which spans multiple tables the columns specified by the
# SELECT will be attributes of the model, whether or not they are columns of the corresponding
@@ -620,7 +620,7 @@ module ActiveRecord #:nodoc:
# The +sql+ parameter is a full SQL query as a string. It will be called as is, there will be
# no database agnostic conversions performed. This should be a last resort because using, for example,
# MySQL specific terms will lock you to using that particular database engine or require you to
- # change your call if you switch engines
+ # change your call if you switch engines.
#
# ==== Examples
# # A simple SQL query spanning multiple tables