From 7800c56c95b4d5eaed648e7d150f1fa8e7a43859 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 19 Apr 2022 14:36:41 -0700 Subject: [PATCH] Fix absolute_path documentation (#1160) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f23adf..530825f 100644 --- a/README.md +++ b/README.md @@ -988,7 +988,7 @@ The executable is at: /bin/just ##### Fallible -- `absolute_path(path)` - Absolute path to relative `path` in the invocation directory. `absolute_path("./bar.txt")` in directory `/foo` is `/foo/bar.txt`. +- `absolute_path(path)` - Absolute path to relative `path` in the working directory. `absolute_path("./bar.txt")` in directory `/foo` is `/foo/bar.txt`. - `extension(path)` - Extension of `path`. `extension("/foo/bar.txt")` is `txt`.