diff options
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_text_overview.md | 2 | ||||
-rw-r--r-- | guides/source/initialization.md | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/guides/source/action_text_overview.md b/guides/source/action_text_overview.md index 07919775e2..a735ec2b0e 100644 --- a/guides/source/action_text_overview.md +++ b/guides/source/action_text_overview.md @@ -46,6 +46,8 @@ happens after every keystroke, and avoids the need to use execCommand at all. ## Installation Run `rails action_text:install` to add the Yarn package and copy over the necessary migration. +Also, you need to set up Active Storage for embedded images and other attachments. +Please refer to the [Active Storage Overview](active_storage_overview.html) guide. ## Examples diff --git a/guides/source/initialization.md b/guides/source/initialization.md index c41eae18cf..817c6b17bc 100644 --- a/guides/source/initialization.md +++ b/guides/source/initialization.md @@ -160,8 +160,8 @@ namespace and executes the command if found. If Rails doesn't recognize the command, it hands the reins over to Rake to run a task of the same name. -As shown, `Rails::Command` displays the help output automatically if the `args` -are empty. +As shown, `Rails::Command` displays the help output automatically if the `namespace` +is empty. ```ruby module Rails::Command |