diff --git a/README.md b/README.md index f435698..a3fd09c 100644 --- a/README.md +++ b/README.md @@ -1443,12 +1443,12 @@ script: #### Source and Source Directory -- `source()`1.27.0 - Retrieves the path of the current source file. +- `source_file()`1.27.0 - Retrieves the path of the current source file. - `source_directory()`1.27.0 - Retrieves the path of the parent directory of the current source file. -`source()` and `source_directory()` behave the same as `justfile()` and +`source_file()` and `source_directory()` behave the same as `justfile()` and `justfile_directory()` in the root `justfile`, but will return the path and directory, respectively, of the current `import` or `mod` source file when called from within an import or submodule. @@ -1645,7 +1645,7 @@ Recipes may be annotated with attributes that change their behavior. | `[confirm]`1.17.0 | Require confirmation prior to executing recipe. | | `[confirm('PROMPT')]`1.23.0 | Require confirmation prior to executing recipe with a custom prompt. | | `[doc('DOC')]`1.27.0 | Set recipe's [documentation comment](#documentation-comments) to `DOC`. | -| `[group('NAME"']`1.27.0 | Put recipe in [recipe group](#recipe-groups) `NAME`. | +| `[group('NAME')]`1.27.0 | Put recipe in [recipe group](#recipe-groups) `NAME`. | | `[linux]`1.8.0 | Enable recipe on Linux. | | `[macos]`1.8.0 | Enable recipe on MacOS. | | `[no-cd]`1.9.0 | Don't change directory before executing recipe. |