From 1d6c17717411b6a6a489f109f48fbef747421fa5 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 25 Jun 2024 14:56:20 -0700 Subject: [PATCH 1/2] Link to modules section where they are first introduced in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9a4b218429..6e8bc749c9 100644 --- a/README.md +++ b/README.md @@ -656,8 +656,8 @@ Available recipes: lint ``` -Recipes in submodules can be listed with `just --list PATH`, where `PATH` is a -space- or `::`-separated module path: +Recipes in [submodules](#modules-1190) can be listed with `just --list PATH`, +where `PATH` is a space- or `::`-separated module path: ``` $ cat justfile @@ -3145,7 +3145,7 @@ import? 'foo/bar.just' Missing source files for optional imports do not produce an error. -### Modules 1.19.0 +### Modules1.19.0 A `justfile` can declare modules using `mod` statements. `mod` statements are currently unstable, so you'll need to use the `--unstable` flag, or set the From 4466e5af8db1a39b43d32a7b1d0ba49431fc0afe Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 25 Jun 2024 14:57:09 -0700 Subject: [PATCH 2/2] Adjust --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e8bc749c9..dafdb726ac 100644 --- a/README.md +++ b/README.md @@ -656,7 +656,7 @@ Available recipes: lint ``` -Recipes in [submodules](#modules-1190) can be listed with `just --list PATH`, +Recipes in [submodules](#modules1190) can be listed with `just --list PATH`, where `PATH` is a space- or `::`-separated module path: ```