diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2014-01-06 08:47:49 -0200 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2014-01-06 08:50:33 -0200 |
commit | 16a27b68ea7ed22c71ca898d8dd369e9dbd4b019 (patch) | |
tree | b3a2bd2970cc03918812b1116fb02282c47bed59 | |
parent | 1ce0a2a68ac658276fa02faddebb0dde86a92d22 (diff) | |
download | rails-16a27b68ea7ed22c71ca898d8dd369e9dbd4b019.tar.gz rails-16a27b68ea7ed22c71ca898d8dd369e9dbd4b019.tar.bz2 rails-16a27b68ea7ed22c71ca898d8dd369e9dbd4b019.zip |
Fix rdoc markup [ci skip]
Wrapping symbols with + does not work, we must use <tt> instead.
-rw-r--r-- | railties/lib/rails/paths.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/paths.rb b/railties/lib/rails/paths.rb index ab85ab9e3e..117bb37487 100644 --- a/railties/lib/rails/paths.rb +++ b/railties/lib/rails/paths.rb @@ -24,7 +24,7 @@ module Rails # # Notice that when you add a path using +add+, the path object created already # contains the path with the same path value given to +add+. In some situations, - # you may not want this behavior, so you can give +:with+ as option. + # you may not want this behavior, so you can give <tt>:with</tt> as option. # # root.add "config/routes", with: "config/routes.rb" # root["config/routes"].inspect # => ["config/routes.rb"] |