diff options
author | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2015-10-03 23:39:31 +0300 |
---|---|---|
committer | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2015-10-03 23:39:31 +0300 |
commit | c4cc3be0d9156c7b4f9eeebfe90527a85d96c68d (patch) | |
tree | 717800a5472550026a7bc55acfc2be9fa16d3fda /activesupport | |
parent | 55ac94cec45328657c579024bb835fe18bb2d32b (diff) | |
download | rails-c4cc3be0d9156c7b4f9eeebfe90527a85d96c68d.tar.gz rails-c4cc3be0d9156c7b4f9eeebfe90527a85d96c68d.tar.bz2 rails-c4cc3be0d9156c7b4f9eeebfe90527a85d96c68d.zip |
Wrong usage of 'a' in docs fixed [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/marshal.rb | 2 |
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 |