diff --git a/doc/lightning-fundchannel.7.txt b/doc/lightning-fundchannel.7.txt index 2ed2e649b..1d1595571 100644 --- a/doc/lightning-fundchannel.7.txt +++ b/doc/lightning-fundchannel.7.txt @@ -12,7 +12,7 @@ SYNOPSIS DESCRIPTION ----------- -The *fundchannel* RPC command opens a payment channel with a peer by commiting +The *fundchannel* RPC command opens a payment channel with a peer by committing a funding transaction to the blockchain as defined in BOLT #2. *fundchannel* by itself does not attempt to open a connection. A connection must first be established using *connect*. diff --git a/doc/lightning-listfunds.7.txt b/doc/lightning-listfunds.7.txt index ddd55aa80..fa9477b8b 100644 --- a/doc/lightning-listfunds.7.txt +++ b/doc/lightning-listfunds.7.txt @@ -43,10 +43,10 @@ Each entry in 'channels' will include: number and output index of the channel funding transaction). - 'channel_sat' - available satoshis on our node's end of the channel -(values rounded to the nearest satoshi as internal storage is in milisatoshi). +(values rounded to the nearest satoshi as internal storage is in millisatoshi). - 'channel_total_sat' - total channel value in satoshi -(values rounded to the nearest satoshi as internal storage is in milisatoshi). +(values rounded to the nearest satoshi as internal storage is in millisatoshi). - 'funding_txid' - funding transaction id. diff --git a/doc/lightning-pay.7.txt b/doc/lightning-pay.7.txt index ae56b2a44..c2dde8c10 100644 --- a/doc/lightning-pay.7.txt +++ b/doc/lightning-pay.7.txt @@ -25,7 +25,7 @@ paid. The `exemptfee` option can be used for tiny payments which would be dominated by the fee leveraged by forwarding nodes. Setting `exemptfee` allows the `maxfeepercent` check to be skipped on fees that are smaller than `exemptfee` -(default: 5000 millsatoshi). +(default: 5000 millisatoshi). The *pay* RPC command will randomize routes slightly, as long as the route achieves the targeted 'maxfeepercent' and 'maxdelay'. diff --git a/doc/lightning-waitinvoice.7.txt b/doc/lightning-waitinvoice.7.txt index 44215669a..f3238701b 100644 --- a/doc/lightning-waitinvoice.7.txt +++ b/doc/lightning-waitinvoice.7.txt @@ -23,7 +23,7 @@ The 'status' field will be 'paid'. If the invoice is deleted while unpaid, or the invoice does not exist, this command will return with an error with code -1. -If the invoice expires before being pad, or is already expired, this +If the invoice expires before being paid, or is already expired, this command will return with an error with code -2, with the data being the invoice data as per *listinvoice*. diff --git a/doc/lightningd-config.5.txt b/doc/lightningd-config.5.txt index 30a9a76e3..00f9709f6 100644 --- a/doc/lightningd-config.5.txt +++ b/doc/lightningd-config.5.txt @@ -18,7 +18,7 @@ exists, when it starts up. The location of this file defaults to *.lightning* in the home directory, but can be overridden by the '--lightning-dir' option on the lightningd(8) command line. -Configuration file options are processsed first, then command line +Configuration file options are processed first, then command line options: later options override earlier ones except 'addr' options which accumulate. @@ -235,7 +235,7 @@ or precisely control where to bind and what to announce with the *bind-addr*='[IPADDRESS[:PORT]]|SOCKETPATH':: Set an IP address or UNIX domain socket to listen to, but do not - announce. A UNIX domain socket is distingished from an IP address + announce. A UNIX domain socket is distinguished from an IP address by beginning with a '/'. An empty 'IPADDRESS' is a special value meaning bind to IPv4 and/or @@ -294,7 +294,7 @@ or precisely control where to bind and what to announce with the BUGS ---- You should report bugs on our github issues page, and maybe submit a -fix to gain our eternal gratutide! +fix to gain our eternal gratitude! AUTHOR ------