From a8bca9cd927edad446bfcf9ff8826ff71ddca3d7 Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Mon, 9 Jan 2023 16:39:31 +0100 Subject: [PATCH] cli: Use imperative for commit message in `edit` Signed-off-by: Alexis Sellier --- radicle-cli/src/commands/edit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicle-cli/src/commands/edit.rs b/radicle-cli/src/commands/edit.rs index 00059c24..20cbfec8 100644 --- a/radicle-cli/src/commands/edit.rs +++ b/radicle-cli/src/commands/edit.rs @@ -84,7 +84,7 @@ pub fn run(options: Options, ctx: impl term::Context) -> anyhow::Result<()> { project.sign(&signer).and_then(|(_, sig)| { project.update( signer.public_key(), - "Updated payload", + "Update payload", &[(signer.public_key(), sig)], repo.raw(), )