jsdoc.md: Fixed Types table

Escape the '|' in the "Multiple types" row.
This commit is contained in:
Dien Luong 2019-01-02 11:21:33 -05:00 committed by GitHub
parent 79f35133f0
commit eccede41ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ See: <http://usejsdoc.org/index.html>
| --- | --- | | --- | --- |
| `@param {string=} n` | Optional | | `@param {string=} n` | Optional |
| `@param {string} [n]` | Optional | | `@param {string} [n]` | Optional |
| `@param {(string|number)} n` | Multiple types | | `@param {(string\|number)} n`| Multiple types |
| `@param {*} n` | Any type | | `@param {*} n` | Any type |
| `@param {...string} n` | Repeatable arguments | | `@param {...string} n` | Repeatable arguments |
| `@param {string} [n="hi"]` | Optional with default | | `@param {string} [n="hi"]` | Optional with default |