From c7213d4cbe1838672cc1026716d521d823340c22 Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Sat, 21 Dec 2019 18:34:48 +1100 Subject: [PATCH] updated a function comment to be more ... accurate --- module/fs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/fs.lua b/module/fs.lua index ceeca51..197cd60 100644 --- a/module/fs.lua +++ b/module/fs.lua @@ -126,7 +126,7 @@ function fs.mounts() -- returns a table containing the mount points of all mount return rt end -function fs.address(path) -- returns the address of the filesystem at a given path, if applicable +function fs.address(path) -- returns the address of the filesystem at a given path, if applicable; do not expect a sensical response local fsi,_ = fs.resolve(path) return fsmounts[fsi].address end