aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2015-10-03 16:41:37 -0400
committerEileen M. Uchitelle <eileencodes@gmail.com>2015-10-03 16:41:37 -0400
commit99392112c5367f0556225fd84f9e41da88e3277e (patch)
tree24e69b910f2e30287f0f0c944970a02ba9e71235 /activesupport
parentbcc3192e6436b40a14d3e08e8b04bbcf8932a259 (diff)
parentc4cc3be0d9156c7b4f9eeebfe90527a85d96c68d (diff)
downloadrails-99392112c5367f0556225fd84f9e41da88e3277e.tar.gz
rails-99392112c5367f0556225fd84f9e41da88e3277e.tar.bz2
rails-99392112c5367f0556225fd84f9e41da88e3277e.zip
Merge pull request #21860 from vngrs/wrong_usage_of_a_in_doc
Wrong usage of 'a' in docs fixed [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/marshal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/marshal.rb b/activesupport/lib/active_support/core_ext/marshal.rb
index 20a0856e71..e333b26133 100644
--- a/activesupport/lib/active_support/core_ext/marshal.rb
+++ b/activesupport/lib/active_support/core_ext/marshal.rb
@@ -6,7 +6,7 @@ module ActiveSupport
if exc.message.match(%r|undefined class/module (.+)|)
# try loading the class/module
$1.constantize
- # if it is a IO we need to go back to read the object
+ # if it is an IO we need to go back to read the object
source.rewind if source.respond_to?(:rewind)
retry
else