From c3104777658bda8399f6b2ffab6cdb97ef55a81d Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Wed, 18 Aug 2021 09:57:53 -0700 Subject: [PATCH] cleanup: fix formatting of commands.rs --- src/commands.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/commands.rs b/src/commands.rs index 0fec2a386..50c7b7d00 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1445,7 +1445,10 @@ fn cmd_status( ui.stdout_formatter().remove_label()?; writeln!(ui)?; } - writeln!(ui, " Use `jj branches` to see details. Use `jj branch -r ` to resolve.")?; + writeln!( + ui, + " Use `jj branches` to see details. Use `jj branch -r ` to resolve." + )?; } if !conflicted_remote_branches.is_empty() { ui.stdout_formatter().add_label("conflict".to_string())?; @@ -1458,7 +1461,10 @@ fn cmd_status( ui.stdout_formatter().remove_label()?; writeln!(ui)?; } - writeln!(ui, " Use `jj branches` to see details. Use `jj git pull` to resolve.")?; + writeln!( + ui, + " Use `jj branches` to see details. Use `jj git pull` to resolve." + )?; } let summary = commit.parents()[0] .tree()