diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2010-04-04 17:34:13 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2010-04-04 17:34:13 +0100 |
commit | 48b2451142355b22de5f8130b3debdd4e53e2ba2 (patch) | |
tree | ee3b1bcf44803333799873385c5f246efef06128 /activerecord/lib | |
parent | 824fa10f4d1306cc1e310a7d5de7e95cfb07d6f8 (diff) | |
download | rails-48b2451142355b22de5f8130b3debdd4e53e2ba2.tar.gz rails-48b2451142355b22de5f8130b3debdd4e53e2ba2.tar.bz2 rails-48b2451142355b22de5f8130b3debdd4e53e2ba2.zip |
Update various documentation examples to use new routing DSL
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-x | activerecord/lib/active_record/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 37b379af9e..5f741c6ae7 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -1572,7 +1572,7 @@ module ActiveRecord #:nodoc: # or nil if this record's unsaved. # # For example, suppose that you have a User model, and that you have a - # <tt>map.resources :users</tt> route. Normally, +user_path+ will + # <tt>resources :users</tt> route. Normally, +user_path+ will # construct a path with the user object's 'id' in it: # # user = User.find_by_name('Phusion') |