Skip to content

Commit

Permalink
Fix documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
hns committed Feb 22, 2012
1 parent 8f89e90 commit f76dd62
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions docs/api/index.html
Expand Up @@ -214,9 +214,9 @@ <h2><a href="./middleware/mount/index.html"> stick/middleware/mount </a></h2>
that forward and reverse request routing will usually work as expected.</p>

<p>This middleware maintains an index mapping applications to mount points which
can be accessed using the <a href="#lookup">lookup</a> function. The [stick/helpers] module
provides higher level functions for this which include support for the route
middleware.</p>
can be accessed using the <a href="#lookup">lookup</a> function. The [stick/helpers][helpers]
module provides higher level functions for this which include support for the
route middleware.</p>


</div>
Expand Down Expand Up @@ -354,8 +354,8 @@ <h3>Reverse Routing</h3>
with a route spec <code>/post/:id.html</code>, calling <code>app.route.reverse({action: "post.html", id: 5})</code>
will return the string "/post/5.html".</p>

<p>The [stick/helpers] module provides higher level helpers for reverse routing including
support for mounted applications.</p>
<p>The [stick/helpers][helpers] module provides higher level helpers for reverse
routing including support for mounted applications.</p>


</div>
Expand Down
6 changes: 3 additions & 3 deletions docs/api/middleware/mount/index.html
Expand Up @@ -38,9 +38,9 @@ <h1 class="modulename">Module stick/middleware/mount</h1>
that forward and reverse request routing will usually work as expected.</p>

<p>This middleware maintains an index mapping applications to mount points which
can be accessed using the <a href="#lookup">lookup</a> function. The <a href="../../stick/helpers/index.html" title="stick/helpers">stick/helpers</a> module
provides higher level functions for this which include support for the route
middleware.</p>
can be accessed using the <a href="#lookup">lookup</a> function. The <a href="../../helpers/index.html" title="helpers">stick/helpers</a>
module provides higher level functions for this which include support for the
route middleware.</p>


</div>
Expand Down
4 changes: 2 additions & 2 deletions docs/api/middleware/route/index.html
Expand Up @@ -62,8 +62,8 @@ <h3>Reverse Routing</h3>
with a route spec <code>/post/:id.html</code>, calling <code>app.route.reverse({action: "post.html", id: 5})</code>
will return the string "/post/5.html".</p>

<p>The <a href="../../stick/helpers/index.html" title="stick/helpers">stick/helpers</a> module provides higher level helpers for reverse routing including
support for mounted applications.</p>
<p>The <a href="../../helpers/index.html" title="helpers">stick/helpers</a> module provides higher level helpers for reverse
routing including support for mounted applications.</p>


</div>
Expand Down
6 changes: 3 additions & 3 deletions lib/middleware/mount.js
Expand Up @@ -15,9 +15,9 @@
* that forward and reverse request routing will usually work as expected.
*
* This middleware maintains an index mapping applications to mount points which
* can be accessed using the [lookup](#lookup) function. The [stick/helpers] module
* provides higher level functions for this which include support for the route
* middleware.
* can be accessed using the [lookup](#lookup) function. The [stick/helpers][helpers]
* module provides higher level functions for this which include support for the
* route middleware.
*
* @example
* app.configure("mount");
Expand Down
4 changes: 2 additions & 2 deletions lib/middleware/route.js
Expand Up @@ -39,8 +39,8 @@
* with a route spec `/post/:id.html`, calling `app.route.reverse({action: "post.html", id: 5})`
* will return the string "/post/5.html".
*
* The [stick/helpers] module provides higher level helpers for reverse routing including
* support for mounted applications.
* The [stick/helpers][helpers] module provides higher level helpers for reverse
* routing including support for mounted applications.
*
* @example
* app.configure("route")
Expand Down

0 comments on commit f76dd62

Please sign in to comment.