- removing redundant 'happens' in documentation [ci skip]

This commit is contained in:
Mohit Natoo 2016-05-19 02:02:30 +05:30
parent b98c1f9489
commit 75c221f10f
1 changed files with 2 additions and 4 deletions

View File

@ -29,8 +29,7 @@ module ActiveModel
end
module ClassMethods
# Defines a callback that will get called right before validation
# happens.
# Defines a callback that will get called right before validation.
#
# class Person
# include ActiveModel::Validations
@ -65,8 +64,7 @@ module ActiveModel
set_callback(:validation, :before, *args, &block)
end
# Defines a callback that will get called right after validation
# happens.
# Defines a callback that will get called right after validation.
#
# class Person
# include ActiveModel::Validations