From c6a2922bc29bb590b5751a94cefeff09e00d7469 Mon Sep 17 00:00:00 2001 From: laniakea64 Date: Mon, 20 Nov 2023 21:36:27 -0500 Subject: [PATCH] Clarify that aliases can only be used on the command line (#1726) --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 23cee3e..e915111 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! ```