Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deprecation warnings to be correct #539

Merged
merged 1 commit into from
Apr 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/spoom/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading