diff options
| author | David RodrÃguez <2887858+deivid-rodriguez@users.noreply.github.com> | 2025-09-09 14:36:46 +0200 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-09-11 11:54:49 +0900 |
| commit | 3486f4d9d8d2d4a64e884de4dce4dabb434a6b28 (patch) | |
| tree | 23f39647183e40215a330b2b7d02a8a2315ce4e0 | |
| parent | ce19fb50b3d0e04412f3aff66d0d7241b9f888d3 (diff) | |
[rubygems/rubygems] Fix grammar in remembered options removal message
https://github.com/rubygems/rubygems/commit/825e29a9ec
| -rw-r--r-- | lib/bundler/cli.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb index 0a08940bf6..40e15d3506 100644 --- a/lib/bundler/cli.rb +++ b/lib/bundler/cli.rb @@ -757,9 +757,9 @@ module Bundler "#{option_value}`, and stop using this flag" removed_message = "The `#{flag_name}` flag has been removed because it relied on being " \ - "remembered across bundler invocations, which bundler will no longer " \ - "do. Instead please use `bundle config set #{option_name} " \ - "#{option_value}`, and stop using this flag" + "remembered across bundler invocations, which bundler no longer does. " \ + "Instead please use `bundle config set #{option_name} #{option_value}`, " \ + "and stop using this flag" Bundler::SharedHelpers.major_deprecation 2, message, removed_message: removed_message end |
