Clarify that aliases can only be used on the command line (#1726)

This commit is contained in:
laniakea64 2023-11-20 21:36:27 -05:00 committed by GitHub
parent bfea1ae5f1
commit c6a2922bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -634,7 +634,7 @@ $ just --list --list-heading ''
### Aliases
Aliases allow recipes to be invoked with alternative names:
Aliases allow recipes to be invoked on the command line with alternative names:
```just
alias b := build
@ -645,7 +645,6 @@ build:
```sh
$ just b
build
echo 'Building!'
Building!
```