diff options
author | Prem Sichanugrist <s@sikac.hu> | 2013-11-11 13:53:54 -0500 |
---|---|---|
committer | Prem Sichanugrist <s@sikac.hu> | 2013-11-11 13:53:54 -0500 |
commit | efff6c1fd4b9e2e4c9f705a45879373cb34a5b0e (patch) | |
tree | 88592ddf445e74bab4d918481cc377cb384f6c03 /actionpack | |
parent | 83271a64f961e8138bf1e125251860333ba88f72 (diff) | |
download | rails-efff6c1fd4b9e2e4c9f705a45879373cb34a5b0e.tar.gz rails-efff6c1fd4b9e2e4c9f705a45879373cb34a5b0e.tar.bz2 rails-efff6c1fd4b9e2e4c9f705a45879373cb34a5b0e.zip |
Change syntax format for example returned values
According to our guideline, we leave 1 space between `#` and `=>`, so we
want `# =>` instead of `#=>`.
Thanks to @fxn for the suggestion.
[ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index db9c993590..795206b953 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -384,7 +384,7 @@ module ActionDispatch # The namespace for :controller. # # match 'path', to: 'c#a', module: 'sekret', controller: 'posts' - # #=> Sekret::PostsController + # # => Sekret::PostsController # # See <tt>Scoping#namespace</tt> for its scope equivalent. # |