cli: cargo fmt
Missed a `cargo fmt` for the feedback print statements
This commit is contained in:
parent
dd5f739630
commit
3dba4fbc91
|
|
@ -91,8 +91,12 @@ pub fn run(_options: Options, ctx: impl term::Context) -> anyhow::Result<()> {
|
||||||
term::blank();
|
term::blank();
|
||||||
|
|
||||||
term::print("Do you have feedback?");
|
term::print("Do you have feedback?");
|
||||||
term::print(" - Chat <\x1b]8;;https://radicle.zulipchat.com\x1b\\radicle.zulipchat.com\x1b]8;;\x1b\\>");
|
term::print(
|
||||||
term::print(" - Mail <\x1b]8;;mailto:feedback@radicle.xyz\x1b\\feedback@radicle.xyz\x1b]8;;\x1b\\>");
|
" - 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.)");
|
term::print(" (Messages are automatically posted to the public #feedback channel on Zulip.)");
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue