From 4bb92178b1aeb18eed7aa940898e45c010b6142f Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 19 May 2020 13:30:42 +0930 Subject: [PATCH] Update lightningd/lightningd.c Co-authored-by: neil saitug --- lightningd/lightningd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/lightningd.c b/lightningd/lightningd.c index 849f9eb9f..2d4599d93 100644 --- a/lightningd/lightningd.c +++ b/lightningd/lightningd.c @@ -107,7 +107,7 @@ static struct lightningd *new_lightningd(const tal_t *ctx) * * It's incredibly useful for grouping object lifetimes, as we'll see. * For example, a `struct lightningd` has a pointer to a `log_book` - * which is allocated off the `struct lightnintd`, and has its own + * which is allocated off the `struct lightningd`, and has its own * internal members allocated off `log_book`: freeing `struct * lightningd` frees them all. *