docs(converter.js): fix return type of Converter function

This commit is contained in:
Estevão Soares dos Santos 2015-08-23 02:21:00 +01:00
parent 7dc3fb1d25
commit 636fd5959d
5 changed files with 6 additions and 16 deletions

9
dist/showdown.js vendored
View File

@ -1,4 +1,4 @@
;/*! showdown 11-08-2015 */
;/*! showdown 23-08-2015 */
(function(){
/**
* Created by Tivie on 13-07-2015.
@ -525,12 +525,7 @@ if (showdown.helper.isUndefined(console)) {
* Showdown Converter class
* @class
* @param {object} [converterOptions]
* @returns {
* {makeHtml: Function},
* {setOption: Function},
* {getOption: Function},
* {getOptions: Function}
* }
* @returns {Converter}
*/
showdown.Converter = function (converterOptions) {
'use strict';

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -6,12 +6,7 @@
* Showdown Converter class
* @class
* @param {object} [converterOptions]
* @returns {
* {makeHtml: Function},
* {setOption: Function},
* {getOption: Function},
* {getOptions: Function}
* }
* @returns {Converter}
*/
showdown.Converter = function (converterOptions) {
'use strict';