diff options
author | Yves Senn <yves.senn@garaio.com> | 2013-01-17 14:25:56 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@garaio.com> | 2013-01-17 14:25:56 +0100 |
commit | 29a69cde0caf99d410ae45188aef558c3bc0d77a (patch) | |
tree | 0e130484bf11643d6178b5efbbcd302e7d73f02a | |
parent | ee314a5e5aa2b29978b78fbe1b272bcfff865d4a (diff) | |
download | rails-29a69cde0caf99d410ae45188aef558c3bc0d77a.tar.gz rails-29a69cde0caf99d410ae45188aef558c3bc0d77a.tar.bz2 rails-29a69cde0caf99d410ae45188aef558c3bc0d77a.zip |
spelling correction for AM interceptors
-rw-r--r-- | guides/source/action_mailer_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index 7f992025e4..313104e5a6 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -588,7 +588,7 @@ class SandboxEmailInterceptor end ``` -Before the Interceptor can do it's job you need to register it with the Action Mailer framework. You can do this in an initializer file `config/initializers/sandbox_email_interceptor.rb` +Before the interceptor can do it's job you need to register it with the Action Mailer framework. You can do this in an initializer file `config/initializers/sandbox_email_interceptor.rb` ```ruby ActionMailer::Base.register_interceptor(SandboxEmailInterceptor) if Rails.env.staging? |