Fixed docs links (Fixes #59)

master
Yonaba 2018-09-20 18:58:38 +00:00
parent 14171d243b
commit d6ec716066
3 changed files with 8 additions and 16 deletions

View File

@ -7225,7 +7225,7 @@
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2018-09-12 11:33:43 </i>
<i style="float:right;">Last updated 2018-09-20 18:44:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>

View File

@ -27,15 +27,7 @@
<h1>Moses</h1>
<h2>Contents</h2>
<ul>
<li><a href="#_a_name__table__Table_functions__a_"><a name='table'>Table functions</a> </a></li>
<li><a href="#_a_name__array__Array_functions__a_"><a name='array'>Array functions</a> </a></li>
<li><a href="#_a_name__utility__Utility_functions__a_"><a name='utility'>Utility functions</a> </a></li>
<li><a href="#_a_name__object__Object_functions__a_"><a name='object'>Object functions</a> </a></li>
<li><a href="#_a_name__chaining__Chaining__a_"><a name='chaining'>Chaining</a> </a></li>
<li><a href="#_a_name__import__Import__a_"><a name='import'>Import</a> </a></li>
</ul>
<h2>Manual</h2>
@ -44,7 +36,7 @@
</ul>
<h2>Modules</h2>
<ul class="nowrap">
<li><a href="index.html">moses</a></li>
<li><a href="../index.html">moses</a></li>
</ul>
</div>
@ -2278,7 +2270,7 @@ M.uniqueId(formatter) <span class="comment">-- =&gt; '$ID1$'</span>
</pre>
<h3>iterator(f, value [, n])</h3>
<h3>iterator (f, value [, n])</h3>
<p>*Aliases: <code>iter</code>*.</p>
<p>Returns an iterator function which constinuously applies a function <code>f</code> onto an input <a href="index.html#obj:value">value</a>.
@ -2398,7 +2390,7 @@ flipped(<span class="string">'a'</span>,<span class="string">'b'</span>,<span cl
</pre>
<h3>nthArg(n)</h3>
<h3>nthArg (n)</h3>
<p>Returns a function that gets the nth argument. </p>
@ -3257,7 +3249,7 @@ M.import(context, <span class="keyword">true</span>)
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2018-09-12 11:33:43 </i>
<i style="float:right;">Last updated 2018-09-20 18:44:46 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>

View File

@ -1880,7 +1880,7 @@ local formatter = function(ID) return '$'..ID..'$' end
M.uniqueId(formatter) -- => '$ID1$'
````
### iterator(f, value [, n])
### iterator (f, value [, n])
*Aliases: `iter`*.
Returns an iterator function which constinuously applies a function `f` onto an input `value`.
@ -1980,7 +1980,7 @@ local flipped = M.flip(f)
flipped('a','b','c') -- => 'cba'
````
### nthArg(n)
### nthArg (n)
Returns a function that gets the nth argument.