Skip to content

Commit

Permalink
fix broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
hegemonic committed Feb 20, 2015
1 parent fba0ada commit de7d500
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions content/en/howto-commonjs-modules.md
Expand Up @@ -293,6 +293,7 @@ var mixer = module.exports = {
{% endexample %}

[alias-tag]: tags-alias.html
[exports-tag]: tags-exports.html


## Properties added to 'this'
Expand Down
6 changes: 3 additions & 3 deletions howto-commonjs-modules.html
Expand Up @@ -247,9 +247,9 @@ <h3 id="string-number-or-boolean-assigned-to-module-exports-">String, number, or
</code></pre>
</figure>
<h2 id="values-assigned-to-module-exports-and-local-variables">Values assigned to &#39;module.exports&#39; and local variables</h2>
<p>If your module exports symbols that are not directly assigned to <code>module.exports</code>, you can use the [
<code>@exports</code> tag][exports-tag] in place of the <code>@module</code> tag. The <code>@exports</code> tag tells JSDoc that a symbol represents the value
exported by a module.</p>
<p>If your module exports symbols that are not directly assigned to <code>module.exports</code>, you can use the
<a href="tags-exports.html"><code>@exports</code> tag</a> in place of the <code>@module</code> tag. The <code>@exports</code> tag tells JSDoc that a symbol
represents the value exported by a module.</p>
<figure>
<figcaption>Object literal assigned to a local variable and module.exports</figcaption><pre class="prettyprint lang-js"><code>/**
* Color mixer.
Expand Down

0 comments on commit de7d500

Please sign in to comment.