Skip to content

Commit

Permalink
documentation: fix broken links to stevedonovan
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaurens committed Jun 3, 2024
1 parent 1bb6836 commit b380637
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/libraries/pl.path.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ <h1>Module <code>pl.path</code></h1>
is Windows paths to allow both forward and backward slashes (since Lua
also accepts those)</p>

<p> Dependencies: <a href="../libraries/pl.utils.html#">pl.utils</a>, <a href="http://stevedonovan.github.io/lua-stdlibs/lfs.html">lfs</a></p>
<p> Dependencies: <a href="../libraries/pl.utils.html#">pl.utils</a>, <a href="https://lunarmodules.github.io/luafilesystem/manual.html">lfs</a></p>


<h2><a href="#Functions">Functions</a></h2>
Expand Down
3 changes: 1 addition & 2 deletions docs/manual/01-introduction.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@ <h3>Purpose</h3>
perverse, this matches the intended use better.</p>

<p>The only important external dependence of Penlight is
<a href="https://lunarmodules.github.io/luafilesystem/manual.html">LuaFileSystem</a>
(<a href="http://stevedonovan.github.io/lua-stdlibs/lfs.html">lfs</a>), and if you want <a href="../libraries/pl.dir.html#copyfile">dir.copyfile</a> to work cleanly on Windows, you will need
<a href="https://lunarmodules.github.io/luafilesystem/manual.html">LuaFileSystem</a>, and if you want <a href="../libraries/pl.dir.html#copyfile">dir.copyfile</a> to work cleanly on Windows, you will need
either <a href="http://alien.luaforge.net/">alien</a> or be using
<a href="http://luajit.org">LuaJIT</a> as well. (The fallback is to call the equivalent
shell commands.)</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/04-paths.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ <h3>Directory Operations</h3>
functions in the Python <code>fnmatch</code> module. <code>getdirectories</code> will return all
directories contained in a directory, and <code>getfiles</code> will return all files in a
directory which match a shell pattern. These functions return the files as a
table, unlike <a href="http://stevedonovan.github.io/lua-stdlibs/lfs.html#dir">lfs.dir</a> which returns an iterator.)</p>
table, unlike <a href="https://lunarmodules.github.io/luafilesystem/manual.html#dir">lfs.dir</a> which returns an iterator.)</p>

<p><a href="../libraries/pl.dir.html#makepath">dir.makepath</a> can create a full path, creating subdirectories as necessary;
<code>rmtree</code> is the Nuclear Option of file deleting functions, since it will
Expand Down

0 comments on commit b380637

Please sign in to comment.