From 7aa8bddafa4c808df94205f9b422ca96f3f1ac92 Mon Sep 17 00:00:00 2001 From: evansmj Date: Sun, 17 Mar 2024 15:22:03 -0400 Subject: [PATCH] Fix typo "succesfully" needing to be "successfully" --- contrib/msggen/msggen/schema.json | 4 ++-- doc/lightning-listclosedchannels.7.md | 2 +- doc/lightning-listpeerchannels.7.md | 2 +- doc/schemas/listclosedchannels.schema.json | 2 +- doc/schemas/listpeerchannels.schema.json | 2 +- plugins/spender/openchannel.c | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/msggen/msggen/schema.json b/contrib/msggen/msggen/schema.json index dae17aff789c..e45e72791b8c 100644 --- a/contrib/msggen/msggen/schema.json +++ b/contrib/msggen/msggen/schema.json @@ -6878,7 +6878,7 @@ }, "min_to_us_msat": { "type": "msat", - "description": "Least amount owed to us ever. If the peer were to succesfully steal from us, this is the amount we would still retain." + "description": "Least amount owed to us ever. If the peer were to successfully steal from us, this is the amount we would still retain." }, "max_to_us_msat": { "type": "msat", @@ -10777,7 +10777,7 @@ }, "min_to_us_msat": { "type": "msat", - "description": "Least amount owed to us ever. If the peer were to succesfully steal from us, this is the amount we would still retain." + "description": "Least amount owed to us ever. If the peer were to successfully steal from us, this is the amount we would still retain." }, "max_to_us_msat": { "type": "msat", diff --git a/doc/lightning-listclosedchannels.7.md b/doc/lightning-listclosedchannels.7.md index 7c74836bf3ed..e1b0319d61a8 100644 --- a/doc/lightning-listclosedchannels.7.md +++ b/doc/lightning-listclosedchannels.7.md @@ -77,4 +77,4 @@ RESOURCES Main web site: Lightning -[comment]: # ( SHA256STAMP:559d917217fe6d765d8bf019e46bf03d37dae9a437e530b1456252bcb901cbc9) +[comment]: # ( SHA256STAMP:3b61019ef50de78d4a93f93f763c1e3c5877b238a4eba5d12033f9a99756e541) diff --git a/doc/lightning-listpeerchannels.7.md b/doc/lightning-listpeerchannels.7.md index 9394232a0617..58e0ea201aaa 100644 --- a/doc/lightning-listpeerchannels.7.md +++ b/doc/lightning-listpeerchannels.7.md @@ -221,4 +221,4 @@ Main web site: Lightning RFC site (BOLT \#9): -[comment]: # ( SHA256STAMP:bac774d91b15666d66b3e4f5a13676da146430a96429b2c3b14f86d81d8a48a5) +[comment]: # ( SHA256STAMP:27dac0fd7ddb3fa596a5cab7209cf1ab07e1d59b590fb2a371fb95ef23c68643) diff --git a/doc/schemas/listclosedchannels.schema.json b/doc/schemas/listclosedchannels.schema.json index 25bb800893c5..090cde6288b2 100644 --- a/doc/schemas/listclosedchannels.schema.json +++ b/doc/schemas/listclosedchannels.schema.json @@ -155,7 +155,7 @@ }, "min_to_us_msat": { "type": "msat", - "description": "Least amount owed to us ever. If the peer were to succesfully steal from us, this is the amount we would still retain." + "description": "Least amount owed to us ever. If the peer were to successfully steal from us, this is the amount we would still retain." }, "max_to_us_msat": { "type": "msat", diff --git a/doc/schemas/listpeerchannels.schema.json b/doc/schemas/listpeerchannels.schema.json index 37ba284fbc08..5725c6b81854 100644 --- a/doc/schemas/listpeerchannels.schema.json +++ b/doc/schemas/listpeerchannels.schema.json @@ -365,7 +365,7 @@ }, "min_to_us_msat": { "type": "msat", - "description": "Least amount owed to us ever. If the peer were to succesfully steal from us, this is the amount we would still retain." + "description": "Least amount owed to us ever. If the peer were to successfully steal from us, this is the amount we would still retain." }, "max_to_us_msat": { "type": "msat", diff --git a/plugins/spender/openchannel.c b/plugins/spender/openchannel.c index 5993f1e9fa04..c8ba5274a2e0 100644 --- a/plugins/spender/openchannel.c +++ b/plugins/spender/openchannel.c @@ -71,7 +71,7 @@ static bool update_parent_psbt(const tal_t *ctx, struct wally_psbt *clone, *new_node_copy; /* Clone the parent, so we don't make any changes to it - * until we've succesfully done everything */ + * until we've successfully done everything */ /* Only failure is alloc, should we even check? */ tal_wally_start();