Remove extra space in zed --version string for non-stable (#24254)

Release Notes:

- N/A
This commit is contained in:
Michael Sloan
2025-02-05 07:25:03 +00:00
committed by GitHub
parent 5a955e208c
commit fef567bb49
+1 -1
View File
@@ -343,7 +343,7 @@ mod linux {
if *RELEASE_CHANNEL == "stable" {
"".to_string()
} else {
format!(" {} ", *RELEASE_CHANNEL)
format!("{} ", *RELEASE_CHANNEL)
},
option_env!("RELEASE_VERSION").unwrap_or_default(),
self.0.display(),