From 58b3a3ffbee014bd75de865448c947cec5b9714d Mon Sep 17 00:00:00 2001 From: Jonathan Harvey-Buschel Date: Mon, 27 Nov 2023 19:01:52 -0500 Subject: [PATCH] tapcli: fix spacing in misc help cmds --- cmd/tapcli/assets.go | 8 ++++---- cmd/tapcli/universe.go | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cmd/tapcli/assets.go b/cmd/tapcli/assets.go index 610acc98e..6626a8f26 100644 --- a/cmd/tapcli/assets.go +++ b/cmd/tapcli/assets.go @@ -261,8 +261,8 @@ var finalizeBatchCommand = cli.Command{ }, cli.Uint64Flag{ Name: feeRateName, - Usage: "if set, the fee rate in sat/kw to use for the" + - "minting transaction", + Usage: "if set, the fee rate in sat/kw to use for " + + "the minting transaction", }, }, Action: finalizeBatch, @@ -531,8 +531,8 @@ var sendAssetsCommand = cli.Command{ }, cli.Uint64Flag{ Name: feeRateName, - Usage: "if set, the fee rate in sat/kw to use for the" + - "anchor transaction", + Usage: "if set, the fee rate in sat/kw to use for " + + "the anchor transaction", }, // TODO(roasbeef): add arg for file name to write sender proof // blob diff --git a/cmd/tapcli/universe.go b/cmd/tapcli/universe.go index 663281d7e..5c6b64868 100644 --- a/cmd/tapcli/universe.go +++ b/cmd/tapcli/universe.go @@ -783,13 +783,13 @@ var ( }, cli.StringFlag{ Name: proofInsertName, - Usage: "if true, remote Universes can push proofs to" + + Usage: "if true, remote Universes can push proofs to " + "the local Universe", }, cli.StringFlag{ Name: proofExportName, - Usage: "if true, remote Universes can pull proofs from" + - "the local Universe", + Usage: "if true, remote Universes can pull proofs " + + "from the local Universe", }, } ) @@ -1166,8 +1166,8 @@ func universeFederationGetConfigInfo(ctx *cli.Context) error { } if scope == "global" { - return fmt.Errorf("cannot specify global scope and a specific" + - "asset") + return fmt.Errorf("cannot specify global scope and a " + + "specific asset") } return printLocalConfig()