aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-18 22:04:41 +0200
committerXavier Noria <fxn@hashref.com>2008-05-18 22:04:41 +0200
commitc40c17c9864b3225573b682320179fd519184cf0 (patch)
tree9aa3df8dd06c10229958bd792b229bb34c568b94 /activerecord/lib
parentbd57507e7fcbe4c388022f4258c3198d1d614f2b (diff)
downloadrails-c40c17c9864b3225573b682320179fd519184cf0.tar.gz
rails-c40c17c9864b3225573b682320179fd519184cf0.tar.bz2
rails-c40c17c9864b3225573b682320179fd519184cf0.zip
fixed-width font for nil
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-xactiverecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index decc6b9b74..2bb855488f 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -452,7 +452,7 @@ module ActiveRecord #:nodoc:
# conditions or merely an order. If no record can be matched, +nil+ is returned. Use
# <tt>Model.find(:first, *args)</tt> or its shortcut <tt>Model.first(*args)</tt>.
# * Find last - This will return the last record matched by the options used. These options can either be specific
- # conditions or merely an order. If no record can be matched, nil is returned. Use
+ # conditions or merely an order. If no record can be matched, +nil+ is returned. Use
# <tt>Model.find(:last, *args)</tt> or its shortcut <tt>Model.last(*args)</tt>.
# * Find all - This will return all the records matched by the options used.
# If no records are found, an empty array is returned. Use