aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_mailer_basics.md
diff options
context:
space:
mode:
authorQihuan Piao <fantasyday@gmail.com>2013-02-25 00:29:03 +0900
committerQihuan Piao <fantasyday@gmail.com>2013-02-25 00:29:03 +0900
commita1dd468b1cdcae5efcf931d219d2ac03ae8f47e7 (patch)
tree1a2f46e2fd62272f8feeecb453638f1bda804890 /guides/source/action_mailer_basics.md
parentf7a0a95de2daa4f8e68e0b1687f1d77df70d7778 (diff)
downloadrails-a1dd468b1cdcae5efcf931d219d2ac03ae8f47e7.tar.gz
rails-a1dd468b1cdcae5efcf931d219d2ac03ae8f47e7.tar.bz2
rails-a1dd468b1cdcae5efcf931d219d2ac03ae8f47e7.zip
Wrap `around_action` word with <code> tag
Diffstat (limited to 'guides/source/action_mailer_basics.md')
-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 513ae1272f..562ab73bec 100644
--- a/guides/source/action_mailer_basics.md
+++ b/guides/source/action_mailer_basics.md
@@ -447,7 +447,7 @@ end
Action Mailer Callbacks
---------------------------
-Action Mailer allows for you to specify a `before_action`, `after_action` and 'around_action'.
+Action Mailer allows for you to specify a `before_action`, `after_action` and `around_action`.
* Filters can be specified with a block or a symbol to a method in the mailer class similar to controllers.