-
-
Notifications
You must be signed in to change notification settings - Fork 467
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
Remove redundant alias information from CLI #1237
Remove redundant alias information from CLI #1237
Conversation
I just noticed this today. Glad to see a PR already. |
rye/src/cli/fetch.rs
Outdated
@@ -10,7 +10,7 @@ use crate::pyproject::PyProject; | |||
use crate::sources::py::PythonVersionRequest; | |||
use crate::utils::CommandOutput; | |||
|
|||
/// Fetches a Python interpreter for the local machine. This is an alias of `rye toolchain fetch`. | |||
/// Fetches a Python interpreter for the local machine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This note is also visible in rye -h
for fetch. Does that change too with this PR, or does it come from somewhere else?
See also rye install, rye uninstall.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove redundant information about aliases
30e3ce8
to
ec774a9
Compare
Remove redundant information about
toolchain fetch
being an alias oftoolchain fetch
.