aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-31 11:51:24 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-31 11:51:24 +0100
commit18617f72b2790a53ec2b367515c46d7a3a06af51 (patch)
treeaeb32a3c1d5bc92d990262911b497feba7dfe6d6
parent9d8170032150e3030f8dcc88c731410ef4e9dbb8 (diff)
downloaduwu-nolambda-18617f72b2790a53ec2b367515c46d7a3a06af51.tar.xz
Adjust nolambda:fs:remove spec
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8f20a2c..f8afb9e 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,7 @@ Note: all file paths are relative to the _directory the program was started from
- `nolambda:fs:read`: Accepts a file name (arbirary value, converted to string) as $0 and returns it's contents as a string. Causes an error if the file does not exist.
- `nolambda:fs:write`: Accepts a file name (arbirary value, converted to string) as $0 and overwrites it with the contents in $1 (arbirary value, converted to string). Causes an error if the file could not be written. Returns `:nil:nil`.
-- `nolambda:fs:remove`: Accepts an arbitrary number of file names (arbirary type, converted to string), but at least one and unlinks them from the file system (the files can also be a directories). Causes an error if one of the file could not be removed, but does not cause an error if some or all of the files did not exist in the first place. Returns `:nil:nil`.
+- `nolambda:fs:remove`: Accepts an arbitrary number of file names (arbirary type, converted to string), but at least one and unlinks them from the file system (the files can also be a directories). Causes an error if one of the file could not be removed, or if some or all of the files did not exist in the first place. Returns `:nil:nil`.
- `nolambda:fs:exists`: Accepts an arbitrary number of file names (arbirary type, converted to string), but at least one and returns `:bool:true` if all of them exist, `:bool:fase` else.
### `nolambda:os`