From d0899e6af5b32ea51ad6ac1e6e366f50ff0914a6 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 19 Feb 2025 15:33:18 -0500 Subject: [PATCH] cli: Fix comment (#25190) This PR fixes a comment in the `cli` crate that seems to have been inadvertently changed in #25185. I also reworded it to be a bit more formal. Release Notes: - N/A --- crates/cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/src/main.rs b/crates/cli/src/main.rs index cc5d1c0447..a856836025 100644 --- a/crates/cli/src/main.rs +++ b/crates/cli/src/main.rs @@ -121,7 +121,7 @@ fn main() -> Result<()> { // Intercept version designators #[cfg(target_os = "macos")] if let Some(channel) = std::env::args().nth(1).filter(|arg| arg.starts_with("--")) { - //When the first argument is a name of a release channel, we're gonna spawn off a cli of that version, with trailing args passed along. + // When the first argument is a name of a release channel, we're going to spawn off the CLI of that version, with trailing args passed along. use std::str::FromStr as _; if let Ok(channel) = release_channel::ReleaseChannel::from_str(&channel[2..]) {