docs(lists.js): fix missing jsdoc parameter

This commit is contained in:
Estevão Soares dos Santos 2015-08-23 02:46:04 +01:00
parent 636fd5959d
commit b6c8b497db
4 changed files with 2 additions and 0 deletions

BIN
dist/showdown.js vendored

Binary file not shown.

BIN
dist/showdown.js.map vendored

Binary file not shown.

Binary file not shown.

View File

@ -8,6 +8,7 @@ showdown.subParser('lists', function (text, options, globals) {
* Process the contents of a single ordered or unordered list, splitting it
* into individual list items.
* @param {string} listStr
* @param {boolean} trimTrailing
* @returns {string}
*/
function processListItems (listStr, trimTrailing) {
@ -95,6 +96,7 @@ showdown.subParser('lists', function (text, options, globals) {
* Check and parse consecutive lists (better fix for issue #142)
* @param {string} list
* @param {string} listType
* @param {boolean} trimTrailing
* @returns {string}
*/
function parseConsecutiveLists(list, listType, trimTrailing) {