Skip to content

Commit

Permalink
Typo fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 8, 2009
1 parent e37a44b commit 870100a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs.txt
Expand Up @@ -1366,7 +1366,7 @@ Your config file is a Lua script, and as such, has access to all of Lua's

if item.type == "file" then
print("file created at " .. item.path)
print("with permissions" ... item.mode) -- This is a string!
print("with permissions" .. item.mode) -- This is a string!

-- Checksums may or may not exist in this table, depending on how
-- MojoSetup was compiled. You can iterate to find out what's there:
Expand All @@ -1380,7 +1380,7 @@ Your config file is a Lua script, and as such, has access to all of Lua's

if item.type == "dir" then
print("directory created at " .. item.path)
print("with permissions" ... item.mode) -- This is a string!
print("with permissions" .. item.mode) -- This is a string!
end

if item.type == "symlink" then
Expand Down

0 comments on commit 870100a

Please sign in to comment.