aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-01-17 05:42:22 -0800
committerXavier Noria <fxn@hashref.com>2013-01-17 05:42:22 -0800
commit13c0d8c5b31a308b45d8f053df48163cf1d308b5 (patch)
tree0e130484bf11643d6178b5efbbcd302e7d73f02a
parentee314a5e5aa2b29978b78fbe1b272bcfff865d4a (diff)
parent29a69cde0caf99d410ae45188aef558c3bc0d77a (diff)
downloadrails-13c0d8c5b31a308b45d8f053df48163cf1d308b5.tar.gz
rails-13c0d8c5b31a308b45d8f053df48163cf1d308b5.tar.bz2
rails-13c0d8c5b31a308b45d8f053df48163cf1d308b5.zip
Merge pull request #8976 from senny/spelling_correction
spelling correction for Action Mailer interceptors
-rw-r--r--guides/source/action_mailer_basics.md2
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?