From bd12b0065dddc20cfd2346d2d7c80990e06dbcda Mon Sep 17 00:00:00 2001 From: snoppy Date: Sun, 31 Mar 2024 22:51:48 +0800 Subject: [PATCH] fix some typos --- ccan/ccan/crypto/siphash24/siphash24.h | 2 +- channeld/channeld.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ccan/ccan/crypto/siphash24/siphash24.h b/ccan/ccan/crypto/siphash24/siphash24.h index 29db897d8..ce69ad696 100644 --- a/ccan/ccan/crypto/siphash24/siphash24.h +++ b/ccan/ccan/crypto/siphash24/siphash24.h @@ -80,7 +80,7 @@ void siphash24_init(struct siphash24_ctx *ctx, const struct siphash_seed *seed); * SIPHASH24_INIT - initializer for an SIPHASH24 context. * @seed1, @seed2: two 64-bit words for seed. * - * This can be used to staticly initialize an SIPHASH24 context (instead + * This can be used to statically initialize an SIPHASH24 context (instead * of siphash24_init()). * * Example: diff --git a/channeld/channeld.c b/channeld/channeld.c index 4721b6ebb..c67c0c637 100644 --- a/channeld/channeld.c +++ b/channeld/channeld.c @@ -4020,7 +4020,7 @@ static void splice_initiator_user_update(struct peer *peer, const u8 *inmsg) } /* This occurs when the user has signed the final version of the PSBT. At this - * point we do a commitment transaciton round with our peer via + * point we do a commitment transaction round with our peer via * `interactive_send_commitments`. * * Then we finalize the PSBT some more and sign away our funding output,