From 5d1c83ffab6c59bbd5faaf0a6ff4ab4c6f5f9bae Mon Sep 17 00:00:00 2001 From: Matthew Arkin Date: Sat, 20 Apr 2024 01:12:44 +0000 Subject: [PATCH] Update deprecation warnings to be correct --- lib/spoom/cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/spoom/cli.rb b/lib/spoom/cli.rb index 99bab19e..43b993ee 100644 --- a/lib/spoom/cli.rb +++ b/lib/spoom/cli.rb @@ -63,7 +63,7 @@ def bump(directory = ".") desc "coverage", "Collect metrics related to Sorbet coverage" def coverage(*args) - say_warning("This command is deprecated. Please use `spoom srb bump` instead.") + say_warning("This command is deprecated. Please use `spoom srb coverage` instead.") invoke(Cli::Srb::Coverage, args, options) end @@ -73,7 +73,7 @@ def coverage(*args) desc "lsp", "Send LSP requests to Sorbet" def lsp(*args) - say_warning("This command is deprecated. Please use `spoom srb bump` instead.") + say_warning("This command is deprecated. Please use `spoom srb lsp` instead.") invoke(Cli::Srb::LSP, args, options) end