mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 10:00:56 +01:00
Fix invalid code in doc example
This commit is contained in:
parent
66aa1fc9ea
commit
6ea8326939
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ export type WriteOptions = {
|
|||
for _, entryName in fs.readDir("myDirName") do
|
||||
if fs.isFile("myDirName/" .. entryName) then
|
||||
print("Found file " .. entryName)
|
||||
elseif if fs.isDir("myDirName/" .. entryName) then
|
||||
elseif fs.isDir("myDirName/" .. entryName) then
|
||||
print("Found subdirectory " .. entryName)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue