From fb42520252477d83560f2e2a2550c7f377e07bc1 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Sat, 1 Dec 2012 11:39:08 -0200 Subject: Fix typo in AS guide [ci skip] --- guides/source/active_support_core_extensions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guides/source') diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 79ff945495..6f69d5389d 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -3727,13 +3727,13 @@ Extensions to `Marshal` Active Support adds constant autoloading support to `load`. -For example, the file cache store deserializes this way: +For example, the file cache store deserializes this way: ```ruby File.open(file_name) { |f| Marshal.load(f) } ``` -If the cached data refers to a constant that is unknown at that point, the autoloading mechanism is triggered and if it succeeds the desarialization is retried transparently. +If the cached data refers to a constant that is unknown at that point, the autoloading mechanism is triggered and if it succeeds the deserialization is retried transparently. WARNING. If the argument is an `IO` it needs to respond to `rewind` to be able to retry. Regular files respond to `rewind`. -- cgit v1.2.3