diff options
author | Kohei Suzuki <eagletmt@gmail.com> | 2015-05-12 00:36:42 +0900 |
---|---|---|
committer | Kohei Suzuki <eagletmt@gmail.com> | 2015-05-12 00:37:46 +0900 |
commit | c59382b3b142c7225ce4ead04c0c85982120df8a (patch) | |
tree | 971eecd657d4ba41719764564ea028f5a2486fec /guides/source | |
parent | db0e649aba7135133154a35549219cffe968eaf6 (diff) | |
download | rails-c59382b3b142c7225ce4ead04c0c85982120df8a.tar.gz rails-c59382b3b142c7225ce4ead04c0c85982120df8a.tar.bz2 rails-c59382b3b142c7225ce4ead04c0c85982120df8a.zip |
Fix default value in guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 4da369be5e..342d39a528 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -526,7 +526,7 @@ There are a few configuration options available in Active Support: * `config.active_support.test_order` sets the order that test cases are executed. Possible values are `:random` and `:sorted`. This option is set to `:random` in `config/environments/test.rb` in newly-generated applications. If you have an application that does not specify a `test_order`, it will default to `:sorted`, *until* Rails 5.0, when the default will become `:random`. -* `config.active_support.escape_html_entities_in_json` enables or disables the escaping of HTML entities in JSON serialization. Defaults to `false`. +* `config.active_support.escape_html_entities_in_json` enables or disables the escaping of HTML entities in JSON serialization. Defaults to `true`. * `config.active_support.use_standard_json_time_format` enables or disables serializing dates to ISO 8601 format. Defaults to `true`. |