mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
Force eslint bump, confirm its included bugfix. Fixes #204
This commit is contained in:
parent
432151bce8
commit
e4cb2ffe67
@ -20,7 +20,7 @@
|
||||
"babel-core": "^5.0.0",
|
||||
"brfs": "^1.4.0",
|
||||
"concat-stream": "^1.5.0",
|
||||
"doctrine": "^0.7.0",
|
||||
"doctrine": "^0.7.1",
|
||||
"documentation-theme-default": "^1.0.0",
|
||||
"extend": "^3.0.0",
|
||||
"get-comments": "^1.0.1",
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
* @param {string} address - An IPv6 address string
|
||||
* @param {number} [groups=8] - How many octets to parse
|
||||
* @param {?number} third - A third argument
|
||||
* @param {Array} [foo=[1]] to properly be parsed
|
||||
* @example
|
||||
* var address = new Address6('2001::/32');
|
||||
*/
|
||||
|
||||
@ -7,6 +7,7 @@ Represents an IPv6 address
|
||||
- `address` **string** An IPv6 address string
|
||||
- `groups` **[number]** How many octets to parse (optional, default `8`)
|
||||
- `third` **[number]** A third argument
|
||||
- `foo` **[Array]** to properly be parsed (optional, default `[1]`)
|
||||
|
||||
**Examples**
|
||||
|
||||
|
||||
@ -47,10 +47,24 @@
|
||||
},
|
||||
"name": "third"
|
||||
},
|
||||
{
|
||||
"title": "param",
|
||||
"description": "to properly be parsed",
|
||||
"lineNumber": 6,
|
||||
"type": {
|
||||
"type": "OptionalType",
|
||||
"expression": {
|
||||
"type": "NameExpression",
|
||||
"name": "Array"
|
||||
}
|
||||
},
|
||||
"name": "foo",
|
||||
"default": "[1]"
|
||||
},
|
||||
{
|
||||
"title": "example",
|
||||
"description": "var address = new Address6('2001::/32');",
|
||||
"lineNumber": 6
|
||||
"lineNumber": 7
|
||||
}
|
||||
],
|
||||
"loc": {
|
||||
@ -59,7 +73,7 @@
|
||||
"column": 0
|
||||
},
|
||||
"end": {
|
||||
"line": 9,
|
||||
"line": 10,
|
||||
"column": 3
|
||||
}
|
||||
},
|
||||
@ -70,7 +84,7 @@
|
||||
"column": 0
|
||||
},
|
||||
"end": {
|
||||
"line": 10,
|
||||
"line": 11,
|
||||
"column": 0
|
||||
}
|
||||
}
|
||||
@ -117,6 +131,20 @@
|
||||
"prefix": true
|
||||
},
|
||||
"name": "third"
|
||||
},
|
||||
{
|
||||
"title": "param",
|
||||
"description": "to properly be parsed",
|
||||
"lineNumber": 6,
|
||||
"type": {
|
||||
"type": "OptionalType",
|
||||
"expression": {
|
||||
"type": "NameExpression",
|
||||
"name": "Array"
|
||||
}
|
||||
},
|
||||
"name": "foo",
|
||||
"default": "[1]"
|
||||
}
|
||||
],
|
||||
"examples": [
|
||||
|
||||
@ -7,6 +7,7 @@ Represents an IPv6 address
|
||||
- `address` **string** An IPv6 address string
|
||||
- `groups` **[number]** How many octets to parse (optional, default `8`)
|
||||
- `third` **[number]** A third argument
|
||||
- `foo` **[Array]** to properly be parsed (optional, default `[1]`)
|
||||
|
||||
**Examples**
|
||||
|
||||
|
||||
@ -257,6 +257,85 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "listItem",
|
||||
"children": [
|
||||
{
|
||||
"type": "paragraph",
|
||||
"children": [
|
||||
{
|
||||
"type": "inlineCode",
|
||||
"value": "foo"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"value": " "
|
||||
},
|
||||
{
|
||||
"type": "strong",
|
||||
"children": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "[Array]"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"value": " "
|
||||
},
|
||||
{
|
||||
"type": "paragraph",
|
||||
"children": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "to properly be parsed",
|
||||
"position": {
|
||||
"start": {
|
||||
"line": 1,
|
||||
"column": 1
|
||||
},
|
||||
"end": {
|
||||
"line": 1,
|
||||
"column": 22
|
||||
},
|
||||
"indent": []
|
||||
}
|
||||
}
|
||||
],
|
||||
"position": {
|
||||
"start": {
|
||||
"line": 1,
|
||||
"column": 1
|
||||
},
|
||||
"end": {
|
||||
"line": 1,
|
||||
"column": 22
|
||||
},
|
||||
"indent": []
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "paragraph",
|
||||
"children": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": " (optional, default "
|
||||
},
|
||||
{
|
||||
"type": "inlineCode",
|
||||
"value": "[1]"
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"value": ")"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user