From c96695dfcfab8f614ffe46c8cd92f76312b3cc08 Mon Sep 17 00:00:00 2001 From: Akhil G Krishnan Date: Sun, 8 Oct 2023 10:50:28 +0530 Subject: [PATCH] Capitalize framework names --- actionpack/lib/abstract_controller/base.rb | 2 +- guides/source/7_1_release_notes.md | 2 +- railties/test/railties/mounted_engine_test.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/actionpack/lib/abstract_controller/base.rb b/actionpack/lib/abstract_controller/base.rb index f88f6410e07..7562faf04e5 100644 --- a/actionpack/lib/abstract_controller/base.rb +++ b/actionpack/lib/abstract_controller/base.rb @@ -140,7 +140,7 @@ module AbstractController abstract! - # Calls the action going through the entire action dispatch stack. + # Calls the action going through the entire Action Dispatch stack. # # The actual method that is called is determined by calling # #method_for_action. If no method can handle the action, then an diff --git a/guides/source/7_1_release_notes.md b/guides/source/7_1_release_notes.md index 97f515cbba1..bb62c19d909 100644 --- a/guides/source/7_1_release_notes.md +++ b/guides/source/7_1_release_notes.md @@ -723,7 +723,7 @@ Please refer to the [Changelog][active-storage] for detailed changes. * `preprocessed` option is added when declaring variants to preprocess variants. -* Add the ability to destroy active storage variants. +* Add the ability to destroy Active Storage variants. ```ruby User.first.avatar.variant(resize_to_limit: [100, 100]).destroy diff --git a/railties/test/railties/mounted_engine_test.rb b/railties/test/railties/mounted_engine_test.rb index d14859029e9..9240a68f688 100644 --- a/railties/test/railties/mounted_engine_test.rb +++ b/railties/test/railties/mounted_engine_test.rb @@ -282,7 +282,7 @@ module ApplicationTests get "/someone/blog/engine_asset_path" assert_equal "/images/foo.png", last_response.body - # test that the active storage direct upload URL is added to a file field that explicitly requires it within en engine's view code + # test that the Active Storage direct upload URL is added to a file field that explicitly requires it within en engine's view code get "/someone/blog/file_field_with_direct_upload_path" assert_equal "", last_response.body end