From a3cf6af6506825badbc405eaa473b29d5a43ae19 Mon Sep 17 00:00:00 2001 From: uid20002 Date: Fri, 20 May 2005 18:04:56 +0000 Subject: Documentation update --- doc/us/examples.html | 6 +++--- doc/us/index.html | 4 ++-- doc/us/license.html | 4 ++-- doc/us/manual.html | 10 +++++----- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/us/examples.html b/doc/us/examples.html index 57eefbe..984de51 100644 --- a/doc/us/examples.html +++ b/doc/us/examples.html @@ -15,7 +15,7 @@ -
LuaFileSystem
+
LuaFileSystem
File System Library for the Lua Programming Language
@@ -53,7 +53,7 @@

Directory iterator

The following example iterates over a directory and recursively lists the -attributes for each file or directory inside it.

+attributes for each file inside it.

 require"lfs"
@@ -86,7 +86,7 @@ attrdir (".")
 

Valid XHTML 1.0!

- $Id: examples.html,v 1.2 2005/05/19 20:24:31 uid20002 Exp $ + $Id: examples.html,v 1.3 2005/05/20 18:04:56 uid20002 Exp $

diff --git a/doc/us/index.html b/doc/us/index.html index dba432d..b438cba 100644 --- a/doc/us/index.html +++ b/doc/us/index.html @@ -14,7 +14,7 @@ -
LuaFileSystem
+
LuaFileSystem
File System Library for the Lua Programming Language
@@ -107,7 +107,7 @@ Comments are welcome!

Valid XHTML 1.0!

- $Id: index.html,v 1.14 2005/05/20 12:30:13 uid20002 Exp $ + $Id: index.html,v 1.15 2005/05/20 18:04:56 uid20002 Exp $

diff --git a/doc/us/license.html b/doc/us/license.html index b889815..6a0976b 100644 --- a/doc/us/license.html +++ b/doc/us/license.html @@ -14,7 +14,7 @@ -
LuaFileSystem
+
LuaFileSystem
File System Library for the Lua Programming Language
@@ -104,7 +104,7 @@ SOFTWARE.

Valid XHTML 1.0!

- $Id: license.html,v 1.5 2005/05/04 02:28:51 tuler Exp $ + $Id: license.html,v 1.6 2005/05/20 18:04:56 uid20002 Exp $

diff --git a/doc/us/manual.html b/doc/us/manual.html index 45a7492..ecc5cb4 100644 --- a/doc/us/manual.html +++ b/doc/us/manual.html @@ -165,14 +165,14 @@ If you are using Lua 5.1, nothing should be done.

lfs.touch (filepath [, atime [, mtime]])
Set access and modification times of a file. This function is a bind to utime function. The first argument is the - filename, the second argument is the access time, - and the third argument is the modification time. + filename, the second argument (atime) is the access time, + and the third argument (mtime) is the modification time. Both times are provided in seconds (which should be generated with Lua standard function os.date). If the modifition time is omitted, the access time provided is used; if both times are omitted, the current time is used.
- Returns a boolean indicating whethet the operation succeeds or not - (followed by an error string in case it fails).
+ Returns a boolean indicating whether the operation succeeded or not + (followed by an error string when it fails).
lfs.unlock (filehandle[, start[, length]])
Unlocks a file or a part of it. This function works on @@ -192,7 +192,7 @@ If you are using Lua 5.1, nothing should be done.

Valid XHTML 1.0!

- $Id: manual.html,v 1.13 2005/05/20 12:10:58 uid20002 Exp $ + $Id: manual.html,v 1.14 2005/05/20 18:04:56 uid20002 Exp $

-- cgit v1.2.3-55-g6feb