diff options
author | Xavier Noria <fxn@hashref.com> | 2010-06-14 23:21:53 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-06-14 23:22:04 +0200 |
commit | f17159b02996ef478fd2376f1c88adf33a1a1b78 (patch) | |
tree | 5b5d5b651a83e7bf41a677491565525307bd5c88 /activemodel/lib | |
parent | b442edbfccb775eb0d01b63a75b3f33e651037e5 (diff) | |
download | rails-f17159b02996ef478fd2376f1c88adf33a1a1b78.tar.gz rails-f17159b02996ef478fd2376f1c88adf33a1a1b78.tar.bz2 rails-f17159b02996ef478fd2376f1c88adf33a1a1b78.zip |
edit pass: the names of Rails components have a space, ie, "Active Record", not "ActiveRecord"
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/lint.rb | 2 | ||||
-rw-r--r-- | activemodel/lib/active_model/naming.rb | 2 | ||||
-rw-r--r-- | activemodel/lib/active_model/validator.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/lib/active_model/lint.rb b/activemodel/lib/active_model/lint.rb index f9b2fa16db..a5977bf3cc 100644 --- a/activemodel/lib/active_model/lint.rb +++ b/activemodel/lib/active_model/lint.rb @@ -1,6 +1,6 @@ # == Active Model Lint Tests # -# You can test whether an object is compliant with the ActiveModel API by +# You can test whether an object is compliant with the Active Model API by # including <tt>ActiveModel::Lint::Tests</tt> in your TestCase. It will include # tests that tell you whether your object is fully compliant, or if not, # which aspects of the API are not implemented. diff --git a/activemodel/lib/active_model/naming.rb b/activemodel/lib/active_model/naming.rb index 06dcff9b8d..ca1e9f0ee8 100644 --- a/activemodel/lib/active_model/naming.rb +++ b/activemodel/lib/active_model/naming.rb @@ -49,7 +49,7 @@ module ActiveModel # BookCover.model_name.human #=> "Book cover" # # Providing the functionality that ActiveModel::Naming provides in your object - # is required to pass the ActiveModel Lint test. So either extending the provided + # is required to pass the Active Model Lint test. So either extending the provided # method below, or rolling your own is required.. module Naming # Returns an ActiveModel::Name object for module. It can be diff --git a/activemodel/lib/active_model/validator.rb b/activemodel/lib/active_model/validator.rb index b1543fb519..dd9e39843e 100644 --- a/activemodel/lib/active_model/validator.rb +++ b/activemodel/lib/active_model/validator.rb @@ -130,7 +130,7 @@ module ActiveModel #:nodoc: # in the options hash invoking the validate_each method passing in the # record, attribute and value. # - # All ActiveModel validations are built on top of this Validator. + # All Active Model validations are built on top of this Validator. class EachValidator < Validator attr_reader :attributes |