Change coloriz_logging description to follow the standard for this guide

This commit is contained in:
Ryan Bigg 2010-11-29 11:46:15 +11:00
parent d7ac3992d5
commit f03aa05cee

@ -59,7 +59,8 @@ h4. Rails General Configuration
* +config.cache_store+ configures which cache store to use for Rails caching. Options include +:memory_store+, +:file_store+, +:mem_cache_store+ or the name of your own custom class.
* +config.colorize_logging+ (true by default) specifies whether or not to use ANSI color codes when logging information.
* +config.colorize_logging+ specifies whether or not to use ANSI color codes when logging information. Defaults to _true_.
* +config.dependency_loading+ enables or disables dependency loading during the request cycle. Setting dependency_loading to _true_ will allow new classes to be loaded during a request and setting it to _false_ will disable this behavior. Can also be enabled with +threadsafe!+.