Fixes #442 -- broken link to Objects/functions on the homepage

This commit is contained in:
Jeremy Ashkenas
2012-01-24 10:33:14 -05:00
parent eeea70c457
commit 908c015631

View File

@@ -211,7 +211,7 @@
<ul class="toc_section">
<li>- <a href="#keys">keys</a></li>
<li>- <a href="#values">values</a></li>
<li>- <a href="#functions">functions</a></li>
<li>- <a href="#object-functions">functions</a></li>
<li>- <a href="#extend">extend</a></li>
<li>- <a href="#defaults">defaults</a></li>
<li>- <a href="#clone">clone</a></li>
@@ -988,7 +988,7 @@ _.values({one : 1, two : 2, three : 3});
=&gt; [1, 2, 3]
</pre>
<p id="functions">
<p id="object-functions">
<b class="header">functions</b><code>_.functions(object)</code>
<span class="alias">Alias: <b>methods</b></span>
<br />
@@ -1906,7 +1906,7 @@ _([1, 2, 3]).value();
like so: <tt>_([1, 2, 3]).map(...);</tt>. Original patch provided by
<a href="http://macournoyer.com/">Marc-André Cournoyer</a>.
Wrapped objects can be chained through multiple
method invocations. A <a href="#functions"><tt>functions</tt></a> method
method invocations. A <a href="#object-functions"><tt>functions</tt></a> method
was added, providing a sorted list of all the functions in Underscore.
</p>