diff options
author | Bobby Wilson <bobbywilson0@gmail.com> | 2010-07-21 20:34:00 -0700 |
---|---|---|
committer | Bobby Wilson <bobbywilson0@gmail.com> | 2010-07-21 20:34:00 -0700 |
commit | 4ed9bd6431d1733d83de0b461280f77f78a9c4c6 (patch) | |
tree | c18aac76267df97be4712726c152fd8d2c6e3ff2 /railties/guides | |
parent | 919eb200a9a0969c444b938d08eb4661d41ba986 (diff) | |
download | rails-4ed9bd6431d1733d83de0b461280f77f78a9c4c6.tar.gz rails-4ed9bd6431d1733d83de0b461280f77f78a9c4c6.tar.bz2 rails-4ed9bd6431d1733d83de0b461280f77f78a9c4c6.zip |
Changed code style that was incorrectly rendering block style instead of inline.
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/routing.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/routing.textile b/railties/guides/source/routing.textile index 7e6d6b5b34..7b665d81e7 100644 --- a/railties/guides/source/routing.textile +++ b/railties/guides/source/routing.textile @@ -3,7 +3,7 @@ h2. Rails Routing from the Outside In This guide covers the user-facing features of Rails routing. By referring to this guide, you will be able to: * Understand the code in +routes.rb+ -* Construct your own routes, using either the preferred resourceful style or with the @match@ method +* Construct your own routes, using either the preferred resourceful style or with the <tt>match</tt> method * Identify what parameters to expect an action to receive * Automatically create paths and URLs using route helpers * Use advanced techniques such as constraints and Rack endpoints |