diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-03-16 13:00:54 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-03-17 18:50:55 +0900 |
commit | 4bb5ce8188c7623106d124d3398c6b73bfa8ecd4 (patch) | |
tree | dbf435e5eef48a59ff5360e1f65be58ca78ba30c /lib/rubygems/command_manager.rb | |
parent | 83f9aa8f02c9fdcf8d22f0859c4f4fb3ad30bb42 (diff) |
[rubygems/rubygems] util/rubocop -A --only Style/StringLiteralsInInterpolation
https://github.com/rubygems/rubygems/commit/cb554f6eb7
Diffstat (limited to 'lib/rubygems/command_manager.rb')
-rw-r--r-- | lib/rubygems/command_manager.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/command_manager.rb b/lib/rubygems/command_manager.rb index 0a4b53abe5..f8b9796b37 100644 --- a/lib/rubygems/command_manager.rb +++ b/lib/rubygems/command_manager.rb @@ -200,7 +200,7 @@ class Gem::CommandManager if possibilities.size > 1 raise Gem::CommandLineError, - "Ambiguous command #{cmd_name} matches [#{possibilities.join(', ')}]" + "Ambiguous command #{cmd_name} matches [#{possibilities.join(", ")}]" elsif possibilities.empty? raise Gem::UnknownCommandError.new(cmd_name) end |