Skip to content

Commit 58b3a3f

Browse files
committed
tapcli: fix spacing in misc help cmds
1 parent 2869883 commit 58b3a3f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

cmd/tapcli/assets.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ var finalizeBatchCommand = cli.Command{
261261
},
262262
cli.Uint64Flag{
263263
Name: feeRateName,
264-
Usage: "if set, the fee rate in sat/kw to use for the" +
265-
"minting transaction",
264+
Usage: "if set, the fee rate in sat/kw to use for " +
265+
"the minting transaction",
266266
},
267267
},
268268
Action: finalizeBatch,
@@ -531,8 +531,8 @@ var sendAssetsCommand = cli.Command{
531531
},
532532
cli.Uint64Flag{
533533
Name: feeRateName,
534-
Usage: "if set, the fee rate in sat/kw to use for the" +
535-
"anchor transaction",
534+
Usage: "if set, the fee rate in sat/kw to use for " +
535+
"the anchor transaction",
536536
},
537537
// TODO(roasbeef): add arg for file name to write sender proof
538538
// blob

cmd/tapcli/universe.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -783,13 +783,13 @@ var (
783783
},
784784
cli.StringFlag{
785785
Name: proofInsertName,
786-
Usage: "if true, remote Universes can push proofs to" +
786+
Usage: "if true, remote Universes can push proofs to " +
787787
"the local Universe",
788788
},
789789
cli.StringFlag{
790790
Name: proofExportName,
791-
Usage: "if true, remote Universes can pull proofs from" +
792-
"the local Universe",
791+
Usage: "if true, remote Universes can pull proofs " +
792+
"from the local Universe",
793793
},
794794
}
795795
)
@@ -1166,8 +1166,8 @@ func universeFederationGetConfigInfo(ctx *cli.Context) error {
11661166
}
11671167

11681168
if scope == "global" {
1169-
return fmt.Errorf("cannot specify global scope and a specific" +
1170-
"asset")
1169+
return fmt.Errorf("cannot specify global scope and a " +
1170+
"specific asset")
11711171
}
11721172

11731173
return printLocalConfig()

0 commit comments

Comments
 (0)