Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 9227

Show
Ignore:
Timestamp:
04/05/08 11:18:05 (8 months ago)
Author:
pratik
Message:

Fix more typos and changelog

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activemodel/lib/active_model/validations/exclusion.rb

    r9173 r9227  
    1212      # Configuration options: 
    1313      # * <tt>in</tt> - An enumerable object of items that the value shouldn't be part of 
    14       # * <tt>message</tt> - Specifies a customer error message (default is: "is reserved") 
     14      # * <tt>message</tt> - Specifies a custom error message (default is: "is reserved") 
    1515      # * <tt>allow_nil</tt> - If set to true, skips this validation if the attribute is null (default is: false) 
    1616      # * <tt>allow_blank</tt> - If set to true, skips this validation if the attribute is blank (default is: false) 
  • trunk/activemodel/lib/active_model/validations/inclusion.rb

    r9173 r9227  
    1212      # Configuration options: 
    1313      # * <tt>in</tt> - An enumerable object of available items 
    14       # * <tt>message</tt> - Specifies a customer error message (default is: "is not included in the list") 
     14      # * <tt>message</tt> - Specifies a custom error message (default is: "is not included in the list") 
    1515      # * <tt>allow_nil</tt> - If set to true, skips this validation if the attribute is null (default is: false) 
    1616      # * <tt>allow_blank</tt> - If set to true, skips this validation if the attribute is blank (default is: false) 
  • trunk/activeresource/CHANGELOG

    r9226 r9227  
    11*SVN* 
    2  
    3 * Improve documentation. [Xavier Noria] 
    42 
    53* Fixed that to_param should be used and honored instead of hardcoding the id #11406 [gspiers] 
  • trunk/activesupport/CHANGELOG

    r9225 r9227  
    11*SVN* 
     2 
     3* Improve documentation. [Xavier Noria] 
    24 
    35* Modified ActiveSupport::Callbacks::Callback#call to accept multiple arguments.