aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/testing.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-29 12:19:21 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-29 12:19:21 -0200
commit7814f901e1ec0cc3228914f60bd340922f98d94f (patch)
treeb5e1301567a11595ace4c391b224353cbec2aab5 /guides/source/testing.md
parent0eb3ba0e658dd95a5e7d08ddaab7a4c08083756c (diff)
downloadrails-7814f901e1ec0cc3228914f60bd340922f98d94f.tar.gz
rails-7814f901e1ec0cc3228914f60bd340922f98d94f.tar.bz2
rails-7814f901e1ec0cc3228914f60bd340922f98d94f.zip
Use fixed fonts only in the name of the parameter
Diffstat (limited to 'guides/source/testing.md')
-rw-r--r--guides/source/testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 50892dd5e2..228b8d08fa 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -483,12 +483,12 @@ The `get` method kicks off the web request and populates the results into the re
* The action of the controller you are requesting.
This can be in the form of a string or a symbol.
-* `params:` option with a hash of request parameters to pass into the action
+* `params`: option with a hash of request parameters to pass into the action
(e.g. query string parameters or article variables).
-* `session:` option with a hash of session variables to pass along with the request.
+* `session`: option with a hash of session variables to pass along with the request.
-* `flash:` option with a hash of flash values.
+* `flash`: option with a hash of flash values.
All the keyword arguments are optional.