diff options
author | yui-knk <spiketeika@gmail.com> | 2015-03-01 10:44:57 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-03-01 10:44:57 +0900 |
commit | a113c95874cb12abf6c888fa7350758fe6ea7a0d (patch) | |
tree | 1d2de2c6e33d2c8124f7ee1bd69ee4fac4611199 /guides/source | |
parent | 1c5129975bb1683eaa2223dc50eba4b79fb74f11 (diff) | |
download | rails-a113c95874cb12abf6c888fa7350758fe6ea7a0d.tar.gz rails-a113c95874cb12abf6c888fa7350758fe6ea7a0d.tar.bz2 rails-a113c95874cb12abf6c888fa7350758fe6ea7a0d.zip |
[ci skip] Fix fenced code block lang
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/form_helpers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md index 90004c611b..c21a2ba613 100644 --- a/guides/source/form_helpers.md +++ b/guides/source/form_helpers.md @@ -729,7 +729,7 @@ The two basic structures are arrays and hashes. Hashes mirror the syntax used fo the `params` hash will contain -```erb +```ruby {'person' => {'name' => 'Henry'}} ``` |