diff options
author | Jon Moss <me@jonathanmoss.me> | 2017-04-23 12:28:14 -0400 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2017-04-23 12:28:14 -0400 |
commit | 295b2025d8eddbc7fbfbfceac0ea4f90fe34da69 (patch) | |
tree | f26d61b7dc2f42fd038920a976213b6f00ee7cd0 | |
parent | c9d7eeb9dbca7b1cae877d1a02832861dce6691e (diff) | |
download | rails-295b2025d8eddbc7fbfbfceac0ea4f90fe34da69.tar.gz rails-295b2025d8eddbc7fbfbfceac0ea4f90fe34da69.tar.bz2 rails-295b2025d8eddbc7fbfbfceac0ea4f90fe34da69.zip |
Use parameters, not params
Reads better to use the full word.
[ci skip]
-rw-r--r-- | guides/source/5_1_release_notes.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/5_1_release_notes.md b/guides/source/5_1_release_notes.md index ed6802e457..a37e2b01ad 100644 --- a/guides/source/5_1_release_notes.md +++ b/guides/source/5_1_release_notes.md @@ -101,8 +101,8 @@ Secrets will be decrypted in production, using a key stored either in the [Pull Request](https://github.com/rails/rails/pull/27825) -Allows specifying common params used for all methods in a mailer class -to share instance variables, headers and other common setup. +Allows specifying common parameters used for all methods in a mailer class in +order to share instance variables, headers and other common setup. ``` ruby class InvitationsMailer < ApplicationMailer |