From 6a04d2ced39623386bfdfb05f483f2a972edc577 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 11 Dec 2018 09:05:37 +1030 Subject: [PATCH] openingd: comment typo fixes Reported-by: Conor Scott @connscott Signed-off-by: Rusty Russell --- openingd/openingd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openingd/openingd.c b/openingd/openingd.c index aa35e641f..c1f98b7f2 100644 --- a/openingd/openingd.c +++ b/openingd/openingd.c @@ -57,7 +57,7 @@ struct state { /* Cryptographic state needed to exchange messages with the peer */ struct crypto_state cs; - /* Constriants on a channel they open. */ + /* Constraints on a channel they open. */ u32 minimum_depth; u32 min_feerate, max_feerate; u64 min_effective_htlc_capacity_msat; @@ -110,7 +110,7 @@ static void negotiation_aborted(struct state *state, bool am_funder, status_debug("aborted opening negotiation: %s", why); /*~ The "billboard" (exposed as "status" in the JSON listpeers RPC * call) is a transient per-channel area which indicates important - * information about what is happening. It has a "permenant" area for + * information about what is happening. It has a "permanent" area for * each state, which can be used to indicate what went wrong in that * state (such as here), and a single transient area for current * status. */ @@ -330,7 +330,7 @@ static u8 *opening_negotiate_msg(const tal_t *ctx, struct state *state, bool am_funder) { /* This is an event loop of its own. That's generally considered poor - * for, but we use it in a very limited way. */ + * form, but we use it in a very limited way. */ for (;;) { u8 *msg; bool from_gossipd;