From 3dba4fbc91dc7f9cf9b5fd01a0d62262be3f4a6d Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Thu, 10 Apr 2025 16:08:47 +0200 Subject: [PATCH] cli: cargo fmt Missed a `cargo fmt` for the feedback print statements --- radicle-cli/src/commands/help.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/radicle-cli/src/commands/help.rs b/radicle-cli/src/commands/help.rs index 737552f5..8b0f4d55 100644 --- a/radicle-cli/src/commands/help.rs +++ b/radicle-cli/src/commands/help.rs @@ -91,8 +91,12 @@ pub fn run(_options: Options, ctx: impl term::Context) -> anyhow::Result<()> { term::blank(); term::print("Do you have feedback?"); - term::print(" - Chat <\x1b]8;;https://radicle.zulipchat.com\x1b\\radicle.zulipchat.com\x1b]8;;\x1b\\>"); - term::print(" - Mail <\x1b]8;;mailto:feedback@radicle.xyz\x1b\\feedback@radicle.xyz\x1b]8;;\x1b\\>"); + term::print( + " - Chat <\x1b]8;;https://radicle.zulipchat.com\x1b\\radicle.zulipchat.com\x1b]8;;\x1b\\>", + ); + term::print( + " - Mail <\x1b]8;;mailto:feedback@radicle.xyz\x1b\\feedback@radicle.xyz\x1b]8;;\x1b\\>", + ); term::print(" (Messages are automatically posted to the public #feedback channel on Zulip.)"); Ok(())