From b7a5e565a30d4e9065743161e1665f9d9c31e8ce Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Sun, 9 Nov 2025 18:21:52 -0500 Subject: [PATCH] Document path_exists() as returning strings similar to docs for is_dependency() --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 72c8c2898a..75c6b40759 100644 --- a/README.md +++ b/README.md @@ -1935,8 +1935,8 @@ which will halt execution. #### Filesystem Access -- `path_exists(path)` - Returns `true` if the path points at an existing entity - and `false` otherwise. Traverses symbolic links, and returns `false` if the +- `path_exists(path)` - Returns the string `true` if the path points at an existing entity + and the string `false` otherwise. Traverses symbolic links, and returns the string `false` if the path is inaccessible or points to a broken symlink. - `read(path)`1.39.0 - Returns the content of file at `path` as string.