1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #10897 from prathamesh-sonpatki/active-support-typos

Fixed typos in activesupport [ci skip]
This commit is contained in:
Carlos Antonio da Silva 2013-06-10 05:01:14 -07:00
commit ebf2113a05

View file

@ -403,8 +403,8 @@ module ActiveSupport
# the same after this point:
#
# Symbols:: Already methods.
# Strings:: class_eval'ed into methods.
# Procs:: define_method'ed into methods.
# Strings:: class_eval'd into methods.
# Procs:: using define_method compiled into methods.
# Objects::
# a method is created that calls the before_foo method
# on the object.
@ -648,7 +648,7 @@ module ActiveSupport
#
# * <tt>:terminator</tt> - Determines when a before filter will halt the
# callback chain, preventing following callbacks from being called and
# the event from being triggered. This is a string to be eval'ed. The
# the event from being triggered. This is a string to be eval'd. The
# result of the callback is available in the +result+ variable.
#
# define_callbacks :validate, terminator: 'result == false'