Skip to content

Fix captions of @member page #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Jake/articles/tags-member
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<p>
The @member tag identifies any member that does not have a more specialized kind, such as "class",
"function", or "constant". A member can optionally have a type as well as a name.
"function", or "constant". A member can optionally have a type as well as a name.
</p>

<h3>Examples</h3>
Expand All @@ -31,7 +31,7 @@ function Data() {
<p>Here is an example of using @var, a synonym of @member, to document a (virtual) variable 'foo'.
</p>

{{#example}}Using @member to document a virtual member
{{#example}}Using @var to document a virtual member
/**
* A variable in the global namespace called 'foo'.
* @var {number} foo
Expand All @@ -40,7 +40,7 @@ function Data() {

<p>The above example is equivalent to the following:</p>

{{#example}}
{{#example}}The same result with above samples
/**
* A variable in the global namespace called 'foo'.
* @type {number}
Expand Down
6 changes: 3 additions & 3 deletions tags-member.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h3>Overview</h3>

<p>
The @member tag identifies any member that does not have a more specialized kind, such as "class",
"function", or "constant". A member can optionally have a type as well as a name.
"function", or "constant". A member can optionally have a type as well as a name.
</p>

<h3>Examples</h3>
Expand All @@ -209,7 +209,7 @@ <h3>Examples</h3>
</p>

<dl class="example">
<dt>Using @member to document a virtual member</dt>
<dt>Using @var to document a virtual member</dt>
<dd>
<pre class="prettyprint lang-js">
/**
Expand All @@ -222,7 +222,7 @@ <h3>Examples</h3>
</dl><p>The above example is equivalent to the following:</p>

<dl class="example">
<dt></dt>
<dt>The same result with above samples</dt>
<dd>
<pre class="prettyprint lang-js">
/**
Expand Down