Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #13483 from aditya-kapoor/add-missing-slashes
Browse files Browse the repository at this point in the history
Adding missing backslashes in active_model files so as to avoid unwanted [ci skip]
  • Loading branch information
senny committed Dec 27, 2013
2 parents aabfba7 + fe49f43 commit 864514a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/conversion.rb
@@ -1,5 +1,5 @@
module ActiveModel
# == Active \Model Conversion
# == Active \Model \Conversion
#
# Handles default conversions: to_model, to_key, to_param, and to_partial_path.
#
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/model.rb
@@ -1,6 +1,6 @@
module ActiveModel

# == Active \Model Basic \Model
# == Active \Model \Basic \Model
#
# Includes the required interface for an object to interact with
# <tt>ActionPack</tt>, using different <tt>ActiveModel</tt> modules.
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/serializers/json.rb
Expand Up @@ -2,7 +2,7 @@

module ActiveModel
module Serializers
# == Active Model JSON Serializer
# == Active \Model \JSON \Serializer
module JSON
extend ActiveSupport::Concern
include ActiveModel::Serialization
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/validations.rb
Expand Up @@ -4,7 +4,7 @@

module ActiveModel

# == Active \Model Validations
# == Active \Model \Validations
#
# Provides a full validation framework to your objects.
#
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/validations/callbacks.rb
@@ -1,6 +1,6 @@
module ActiveModel
module Validations
# == Active \Model Validation Callbacks
# == Active \Model \Validation \Callbacks
#
# Provides an interface for any class to have +before_validation+ and
# +after_validation+ callbacks.
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/validations/length.rb
@@ -1,6 +1,6 @@
module ActiveModel

# == Active \Model Length \Validator
# == Active \Model Length Validator
module Validations
class LengthValidator < EachValidator # :nodoc:
MESSAGES = { is: :wrong_length, minimum: :too_short, maximum: :too_long }.freeze
Expand Down

0 comments on commit 864514a

Please sign in to comment.