diff options
author | Xavier Noria <fxn@hashref.com> | 2008-05-21 22:34:18 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-05-21 22:34:18 +0200 |
commit | 49738f000b9c7e2902cf17e5e13943e5015f91b8 (patch) | |
tree | dbe5ccf0615bce94fc4584e6a269a9c1d7d49714 /actionpack/lib/action_controller | |
parent | bc0e24040b900c1800c95172dc2532c82e8b28f6 (diff) | |
download | rails-49738f000b9c7e2902cf17e5e13943e5015f91b8.tar.gz rails-49738f000b9c7e2902cf17e5e13943e5015f91b8.tar.bz2 rails-49738f000b9c7e2902cf17e5e13943e5015f91b8.zip |
gsub("ActiveRecord", "Active Record")
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/assertions/model_assertions.rb | 3 | ||||
-rw-r--r-- | actionpack/lib/action_controller/polymorphic_routes.rb | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/assertions/model_assertions.rb b/actionpack/lib/action_controller/assertions/model_assertions.rb index 0b4313055a..d25214bb66 100644 --- a/actionpack/lib/action_controller/assertions/model_assertions.rb +++ b/actionpack/lib/action_controller/assertions/model_assertions.rb @@ -1,7 +1,8 @@ module ActionController module Assertions module ModelAssertions - # Ensures that the passed record is valid by ActiveRecord standards and returns any error messages if it is not. + # Ensures that the passed record is valid by Active Record standards and + # returns any error messages if it is not. # # ==== Examples # diff --git a/actionpack/lib/action_controller/polymorphic_routes.rb b/actionpack/lib/action_controller/polymorphic_routes.rb index e2b7716aa2..c083993fc0 100644 --- a/actionpack/lib/action_controller/polymorphic_routes.rb +++ b/actionpack/lib/action_controller/polymorphic_routes.rb @@ -1,6 +1,6 @@ module ActionController # Polymorphic URL helpers are methods for smart resolution to a named route call when - # given an ActiveRecord model instance. They are to be used in combination with + # given an Active Record model instance. They are to be used in combination with # ActionController::Resources. # # These methods are useful when you want to generate correct URL or path to a RESTful |