Skip to content

Commit

Permalink
Merge pull request rails#47285 from hachi8833/fix_note_notation
Browse files Browse the repository at this point in the history
[ci skip] Fix "Note:" to "NOTE:"
  • Loading branch information
zzak authored Feb 7, 2023
2 parents eba3350 + f52bff3 commit 97289c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guides/source/action_text_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ or add rich text field while creating a new model using:
bin/rails generate model Message content:rich_text
```

**Note:** you don't need to add a `content` field to your `messages` table.
NOTE: you don't need to add a `content` field to your `messages` table.
Then use [`rich_text_area`] to refer to this field in the form for the model:
Expand Down
2 changes: 1 addition & 1 deletion guides/source/initialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ initializers (like building the middleware stack) are run last. The `railtie`
initializers are the initializers which have been defined on the `Rails::Application`
itself and are run between the `bootstrap` and `finishers`.

*Note:* Do not confuse Railtie initializers overall with the [load_config_initializers](configuring.html#using-initializer-files)
NOTE: Do not confuse Railtie initializers overall with the [load_config_initializers](configuring.html#using-initializer-files)
initializer instance or its associated config initializers in `config/initializers`.

After this is done we go back to `Rack::Server`.
Expand Down

0 comments on commit 97289c2

Please sign in to comment.