[skip ci] Minor formatting fixes for code blocks

This commit is contained in:
Deepak Mahakale 2023-09-05 15:39:05 +05:30
parent a10e7a9dc5
commit a16f1907ff

@ -249,11 +249,11 @@ The collection's configuration settings affect all deprecators in the collection
```ruby
Rails.application.deprecators.debug = true
puts Rails.application.deprecators[:my_gem].debug
# true
Rails.application.deprecators[:my_gem].debug
# => true
puts Rails.application.deprecators[:other_gem].debug
# true
Rails.application.deprecators[:other_gem].debug
# => true
```
There are scenarios where you might want to mute all deprecator warnings for a specific block of code.
@ -433,8 +433,8 @@ Please refer to the [Changelog][action-view] for detailed changes.
options for the sanitize process.
```ruby
simple_format("<a target=\"_blank\" href=\"http://example.com\">Continue</a>", {}, { sanitize_options: { attributes: %w[target href] } })
# => "<p><a target=\"_blank\" href=\"http://example.com\">Continue</a></p>"
simple_format("<a target=\"_blank\" href=\"http://example.com\">Continue</a>", {}, { sanitize_options: { attributes: %w[target href] } })
# => "<p><a target=\"_blank\" href=\"http://example.com\">Continue</a></p>"
```
Action Mailer