trivial: missing dots

This commit is contained in:
ErikEk
2021-07-17 13:43:11 +02:00
parent 9331a259d8
commit c8fc9b0a85
4 changed files with 10 additions and 9 deletions

View File

@@ -28,7 +28,7 @@ var (
var profileSubCommand = cli.Command{ var profileSubCommand = cli.Command{
Name: "profile", Name: "profile",
Category: "Profiles", Category: "Profiles",
Usage: "Create and manage lncli profiles", Usage: "Create and manage lncli profiles.",
Description: ` Description: `
Profiles for lncli are an easy and comfortable way to manage multiple Profiles for lncli are an easy and comfortable way to manage multiple
nodes from the command line by storing node specific parameters like RPC nodes from the command line by storing node specific parameters like RPC
@@ -79,7 +79,7 @@ func profileList(_ *cli.Context) error {
var profileAddCommand = cli.Command{ var profileAddCommand = cli.Command{
Name: "add", Name: "add",
Usage: "Add a new profile", Usage: "Add a new profile.",
ArgsUsage: "name", ArgsUsage: "name",
Description: ` Description: `
Add a new named profile to the main profiles.json. All global options Add a new named profile to the main profiles.json. All global options
@@ -230,7 +230,7 @@ func profileRemove(ctx *cli.Context) error {
var profileSetDefaultCommand = cli.Command{ var profileSetDefaultCommand = cli.Command{
Name: "setdefault", Name: "setdefault",
Usage: "Set the default profile", Usage: "Set the default profile.",
ArgsUsage: "name", ArgsUsage: "name",
Description: ` Description: `
Set a specified profile to be used as the default profile. Set a specified profile to be used as the default profile.
@@ -297,7 +297,7 @@ func profileSetDefault(ctx *cli.Context) error {
var profileUnsetDefaultCommand = cli.Command{ var profileUnsetDefaultCommand = cli.Command{
Name: "unsetdefault", Name: "unsetdefault",
Usage: "Unsets the default profile", Usage: "Unsets the default profile.",
Description: ` Description: `
Disables the use of a default profile and restores lncli to its original Disables the use of a default profile and restores lncli to its original
behavior. behavior.
@@ -319,7 +319,7 @@ func profileUnsetDefault(_ *cli.Context) error {
var profileAddMacaroonCommand = cli.Command{ var profileAddMacaroonCommand = cli.Command{
Name: "addmacaroon", Name: "addmacaroon",
Usage: "Add a macaroon to a profile's macaroon jar", Usage: "Add a macaroon to a profile's macaroon jar.",
ArgsUsage: "macaroon-name", ArgsUsage: "macaroon-name",
Description: ` Description: `
Add an additional macaroon specified by the global option --macaroonpath Add an additional macaroon specified by the global option --macaroonpath

View File

@@ -2444,7 +2444,7 @@ var exportChanBackupCommand = cli.Command{
Name: "exportchanbackup", Name: "exportchanbackup",
Category: "Channels", Category: "Channels",
Usage: "Obtain a static channel back up for a selected channels, " + Usage: "Obtain a static channel back up for a selected channels, " +
"or all known channels", "or all known channels.",
ArgsUsage: "[chan_point] [--all] [--output_file]", ArgsUsage: "[chan_point] [--all] [--output_file]",
Description: ` Description: `
This command allows a user to export a Static Channel Backup (SCB) for This command allows a user to export a Static Channel Backup (SCB) for
@@ -2600,7 +2600,7 @@ func exportChanBackup(ctx *cli.Context) error {
var verifyChanBackupCommand = cli.Command{ var verifyChanBackupCommand = cli.Command{
Name: "verifychanbackup", Name: "verifychanbackup",
Category: "Channels", Category: "Channels",
Usage: "Verify an existing channel backup", Usage: "Verify an existing channel backup.",
ArgsUsage: "[--single_backup] [--multi_backup] [--multi_file]", ArgsUsage: "[--single_backup] [--multi_backup] [--multi_file]",
Description: ` Description: `
This command allows a user to verify an existing Single or Multi channel This command allows a user to verify an existing Single or Multi channel
@@ -2678,7 +2678,7 @@ var restoreChanBackupCommand = cli.Command{
Name: "restorechanbackup", Name: "restorechanbackup",
Category: "Channels", Category: "Channels",
Usage: "Restore an existing single or multi-channel static channel " + Usage: "Restore an existing single or multi-channel static channel " +
"backup", "backup.",
ArgsUsage: "[--single_backup] [--multi_backup] [--multi_file=", ArgsUsage: "[--single_backup] [--multi_backup] [--multi_file=",
Description: ` Description: `
Allows a user to restore a Static Channel Backup (SCB) that was Allows a user to restore a Static Channel Backup (SCB) that was

View File

@@ -89,7 +89,7 @@ func settleInvoice(ctx *cli.Context) error {
var cancelInvoiceCommand = cli.Command{ var cancelInvoiceCommand = cli.Command{
Name: "cancelinvoice", Name: "cancelinvoice",
Category: "Invoices", Category: "Invoices",
Usage: "Cancels a (hold) invoice", Usage: "Cancels a (hold) invoice.",
Description: ` Description: `
Todo.`, Todo.`,
ArgsUsage: "paymenthash", ArgsUsage: "paymenthash",

View File

@@ -63,6 +63,7 @@ you.
* [Fixed timeout flakes in async payment benchmark tests](https://github.com/lightningnetwork/lnd/pull/5579). * [Fixed timeout flakes in async payment benchmark tests](https://github.com/lightningnetwork/lnd/pull/5579).
* [Fixed a missing import and git tag in the healthcheck package](https://github.com/lightningnetwork/lnd/pull/5582). * [Fixed a missing import and git tag in the healthcheck package](https://github.com/lightningnetwork/lnd/pull/5582).
* [Fixed a data race in payment unit test](https://github.com/lightningnetwork/lnd/pull/5573). * [Fixed a data race in payment unit test](https://github.com/lightningnetwork/lnd/pull/5573).
* [Missing dots in cmd interface](https://github.com/lightningnetwork/lnd/pull/5535).
## Database ## Database