From c36cef08bc5a8cfa156f80f978248c322adfb99f Mon Sep 17 00:00:00 2001 From: Stephen Webel Date: Sat, 9 Apr 2022 18:41:18 -0400 Subject: [PATCH] use full path to reference `lightningd.c` The relative path makes for a difficult experience when people are reading on `https://lightning.readthedocs.io/`. Directly linking saves the reader a few clicks hunting down the correct location :) --- doc/HACKING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/HACKING.md b/doc/HACKING.md index eac524ee4..82f681337 100644 --- a/doc/HACKING.md +++ b/doc/HACKING.md @@ -18,7 +18,7 @@ It's in C, to encourage alternate implementations. Patches are welcome! You should read our [Style Guide](STYLE.md). To read the code, you should start from -[lightningd.c](../lightningd/lightningd.c) and hop your way through +[lightningd.c](https://github.com/ElementsProject/lightning/blob/master/lightningd/lightningd.c) and hop your way through the '~' comments at the head of each daemon in the suggested order.