From 414d7db964d48eaa1887f0a873a0bfb90d76aec9 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 29 Jun 2024 12:26:05 -0700 Subject: [PATCH] Document module doc comments --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index b13e6e7956..fc4d866e86 100644 --- a/README.md +++ b/README.md @@ -3228,6 +3228,20 @@ mod? foo 'bar.just' mod? foo 'baz.just' ``` +Modules may be given doc comments which appear in `--list` +outputmaster: + +```mf +# foo is a great module! +mod foo +``` + +```sh +$ just --list +Available recipes: + foo ... # foo is a great module! +``` + See the [module stabilization tracking issue](https://github.com/casey/just/issues/929) for more information.