diff options
author | Anton Cherepanov <davetoxa@gmail.com> | 2013-06-20 10:31:08 +0600 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-06-24 16:28:26 +0200 |
commit | 059f9f03941a65baf400b4444e7eddd999397f94 (patch) | |
tree | c7ca85dbec5911096d71a6630d0c9f94f3eedf4b | |
parent | a6f44db052803bd94bd27869dedd6f11bb70c647 (diff) | |
download | rails-059f9f03941a65baf400b4444e7eddd999397f94.tar.gz rails-059f9f03941a65baf400b4444e7eddd999397f94.tar.bz2 rails-059f9f03941a65baf400b4444e7eddd999397f94.zip |
Added markdown tag for highlight
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index c6d3b2a58a..2a681e3ab5 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -173,7 +173,7 @@ As with plural resources, the same helpers ending in `_url` will also include th WARNING: A [long-standing bug](https://github.com/rails/rails/issues/1769) prevents `form_for` from working automatically with singular resources. As a workaround, specify the URL for the form directly, like so: -``` +```ruby form_for @geocoder, url: geocoder_path do |f| ``` |