diff --git a/Jake/articles/tags-member b/Jake/articles/tags-member index d9d23e64..eedbf56b 100644 --- a/Jake/articles/tags-member +++ b/Jake/articles/tags-member @@ -15,7 +15,7 @@

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.

Examples

@@ -31,7 +31,7 @@ function Data() {

Here is an example of using @var, a synonym of @member, to document a (virtual) variable 'foo'.

-{{#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 @@ -40,7 +40,7 @@ function Data() {

The above example is equivalent to the following:

-{{#example}} +{{#example}}The same result with above samples /** * A variable in the global namespace called 'foo'. * @type {number} diff --git a/tags-member.html b/tags-member.html index ea497586..be854904 100644 --- a/tags-member.html +++ b/tags-member.html @@ -188,7 +188,7 @@

Overview

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.

Examples

@@ -209,7 +209,7 @@

Examples

-
Using @member to document a virtual member
+
Using @var to document a virtual member
 /**
@@ -222,7 +222,7 @@ 

Examples

The above example is equivalent to the following:

-
+
The same result with above samples
 /**