diff options
author | Chun-wei Kuo <Dendoh@gmail.com> | 2013-12-26 18:14:38 +0800 |
---|---|---|
committer | Chun-wei Kuo <Dendoh@gmail.com> | 2013-12-26 18:54:46 +0800 |
commit | fbbd4e18994490f00509a5269bbca0dd3521c3ae (patch) | |
tree | 607dd08bc766e36db7d44c390c3313ec5b86dedb /actionpack/lib | |
parent | 87323487ce84c0b66c2ffe047f413c436cbb15e5 (diff) | |
download | rails-fbbd4e18994490f00509a5269bbca0dd3521c3ae.tar.gz rails-fbbd4e18994490f00509a5269bbca0dd3521c3ae.tar.bz2 rails-fbbd4e18994490f00509a5269bbca0dd3521c3ae.zip |
Improve font of some code in API documentation [ci skip]
* Add "<tt>" or "+" to improve font of some code and filenames in API documentation
* Does not contain wording changes
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/renderers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/renderers.rb b/actionpack/lib/action_controller/metal/renderers.rb index 62a3844b04..6c7b4652d4 100644 --- a/actionpack/lib/action_controller/metal/renderers.rb +++ b/actionpack/lib/action_controller/metal/renderers.rb @@ -43,7 +43,7 @@ module ActionController end # Hash of available renderers, mapping a renderer name to its proc. - # Default keys are :json, :js, :xml. + # Default keys are <tt>:json</tt>, <tt>:js</tt>, <tt>:xml</tt>. RENDERERS = Set.new # Adds a new renderer to call within controller actions. |