diff options
author | uid20002 <uid20002> | 2005-05-20 18:04:56 +0000 |
---|---|---|
committer | uid20002 <uid20002> | 2005-05-20 18:04:56 +0000 |
commit | a3cf6af6506825badbc405eaa473b29d5a43ae19 (patch) | |
tree | a32988fd13b8dfd44510445d81562d279d8df228 /doc/us/manual.html | |
parent | 51c0586f9cb36527f54de8d5e3702aeec6ece935 (diff) | |
download | luafilesystem-a3cf6af6506825badbc405eaa473b29d5a43ae19.tar.gz luafilesystem-a3cf6af6506825badbc405eaa473b29d5a43ae19.tar.bz2 luafilesystem-a3cf6af6506825badbc405eaa473b29d5a43ae19.zip |
Documentation update
Diffstat (limited to 'doc/us/manual.html')
-rw-r--r-- | doc/us/manual.html | 10 |
1 files changed, 5 insertions, 5 deletions
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.</p> | |||
165 | <dt><a name="touch"></a><strong><code>lfs.touch (filepath [, atime [, mtime]])</code></strong></dt> | 165 | <dt><a name="touch"></a><strong><code>lfs.touch (filepath [, atime [, mtime]])</code></strong></dt> |
166 | <dd>Set access and modification times of a file. This function is | 166 | <dd>Set access and modification times of a file. This function is |
167 | a bind to <code>utime</code> function. The first argument is the | 167 | a bind to <code>utime</code> function. The first argument is the |
168 | filename, the second argument is the access time, | 168 | filename, the second argument (<code>atime</code>) is the access time, |
169 | and the third argument is the modification time. | 169 | and the third argument (<code>mtime</code>) is the modification time. |
170 | Both times are provided in seconds (which should be generated with | 170 | Both times are provided in seconds (which should be generated with |
171 | Lua standard function <code>os.date</code>). | 171 | Lua standard function <code>os.date</code>). |
172 | If the modifition time is omitted, the access time provided is used; | 172 | If the modifition time is omitted, the access time provided is used; |
173 | if both times are omitted, the current time is used.<br /> | 173 | if both times are omitted, the current time is used.<br /> |
174 | Returns a boolean indicating whethet the operation succeeds or not | 174 | Returns a boolean indicating whether the operation succeeded or not |
175 | (followed by an error string in case it fails).</dd> | 175 | (followed by an error string when it fails).</dd> |
176 | 176 | ||
177 | <dt><a name="unlock"></a><strong><code>lfs.unlock (filehandle[, start[, length]])</code></strong></dt> | 177 | <dt><a name="unlock"></a><strong><code>lfs.unlock (filehandle[, start[, length]])</code></strong></dt> |
178 | <dd>Unlocks a file or a part of it. This function works on | 178 | <dd>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.</p> | |||
192 | <div id="about"> | 192 | <div id="about"> |
193 | <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> | 193 | <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> |
194 | <p><small> | 194 | <p><small> |
195 | $Id: manual.html,v 1.13 2005/05/20 12:10:58 uid20002 Exp $ | 195 | $Id: manual.html,v 1.14 2005/05/20 18:04:56 uid20002 Exp $ |
196 | </small></p> | 196 | </small></p> |
197 | </div> <!-- id="about" --> | 197 | </div> <!-- id="about" --> |
198 | 198 | ||