updated a function comment to be more ... accurate

This commit is contained in:
Izaya 2019-12-21 18:34:48 +11:00
parent 4ef792a06d
commit c7213d4cbe
1 changed files with 1 additions and 1 deletions

View File

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