1
0
mirror of https://github.com/casey/just synced 2024-07-05 17:28:49 +00:00

Fix absolute_path documentation (#1160)

This commit is contained in:
Casey Rodarmor 2022-04-19 14:36:41 -07:00 committed by GitHub
parent df8eabb3ef
commit 7800c56c95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`.