summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaniakea64 <laniakea64@users.noreply.github.com>2023-11-20 21:36:27 -0500
committerGitHub <noreply@github.com>2023-11-20 18:36:27 -0800
commitc6a2922bc29bb590b5751a94cefeff09e00d7469 (patch)
tree4e0b19b83789545e530c4005b7f83ca41db68e17
parentbfea1ae5f1532371bd70f6d74996123174993abb (diff)
Clarify that aliases can only be used on the command line (#1726)
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 23cee3e4..e9151119 100644
--- a/README.md
+++ b/README.md
@@ -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!
```