From 470f5fabc976be0b76ea27411d80b7af3a22228c Mon Sep 17 00:00:00 2001 From: niftynei Date: Wed, 9 Sep 2020 16:50:52 +0930 Subject: [PATCH] amount: fix typo in parse_amount_msat doc --- common/amount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/amount.c b/common/amount.c index 508a0322e..bf9c74d17 100644 --- a/common/amount.c +++ b/common/amount.c @@ -153,7 +153,7 @@ static bool from_numbers(u64 *res, /* Valid strings: * [0-9]+ => millisatoshi. * [0-9]+msat => millisatoshi. - * [0-9]+sat => *1000 -> millisatopshi. + * [0-9]+sat => *1000 -> millisatoshi. * [0-9]+.[0-9]{1,11}btc => millisatoshi. */ bool parse_amount_msat(struct amount_msat *msat, const char *s, size_t slen)