From 742d764001a4d9b9e060c26d764db95a90c7e2f3 Mon Sep 17 00:00:00 2001 From: Vasil Dimov Date: Tue, 17 Dec 2019 19:45:59 +0100 Subject: [PATCH] lightningd: fix formatting in comment Changelog-None --- lightningd/plugin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lightningd/plugin.c b/lightningd/plugin.c index 50026f9e5..b8d84dbef 100644 --- a/lightningd/plugin.c +++ b/lightningd/plugin.c @@ -14,12 +14,12 @@ #include #include -/* How many seconds may the plugin take to reply to the `getmanifest - * call`? This is the maximum delay to `lightningd --help` and until +/* How many seconds may the plugin take to reply to the `getmanifest` + * call? This is the maximum delay to `lightningd --help` and until * we can start the main `io_loop` to communicate with peers. If this * hangs we can't do much, so we put an upper bound on the time we're * willing to wait. Plugins shouldn't do any initialization in the - * `getmanifest` call anyway, that's what `init `is for. */ + * `getmanifest` call anyway, that's what `init` is for. */ #define PLUGIN_MANIFEST_TIMEOUT 60 #if DEVELOPER