From b63f04efb729b4c4926bf536806098ffbb8964d0 Mon Sep 17 00:00:00 2001 From: laniakea64 Date: Mon, 13 Nov 2023 22:37:10 -0500 Subject: [PATCH] Clarify aliases documentation --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index fc465a5b8d..3f70ad0918 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 using an alternative name for a recipe when invoking it at the command line: ```just alias b := build @@ -645,7 +645,6 @@ build: ```sh $ just b -build echo 'Building!' Building! ```