fix capitalization of Object/Array

This commit is contained in:
Dennis Eichhorn 2019-12-30 00:48:05 +01:00
parent df9217250c
commit 1a8e433eef
6 changed files with 11 additions and 11 deletions

View File

@ -112,7 +112,7 @@
/**
* Draw particle to canvas
*
* @param {object} ctx Canvas
* @param {Object} ctx Canvas
*
* @return {void}
*

View File

@ -16,7 +16,7 @@
jsOMS.Animation.Canvas.ParticleAnimation = class {
/**
*
* @param {object} canvas Canvas
* @param {Object} canvas Canvas
*
* @constructor
*
@ -52,7 +52,7 @@
/**
* Draw everything
*
* @param {object} self Object reference for self invoke
* @param {Object} self Object reference for self invoke
*
* @return {void}
*

View File

@ -110,7 +110,7 @@ export class ActionManager {
* Bind listener for object
*
* @param {string} id Element to bind
* @param {object} listener Listener object
* @param {Object} listener Listener object
*
* @return {void}
*

View File

@ -451,7 +451,7 @@
/**
* Validate extension
* @param {array} extension
* @param {Array} extension
* @param {string} name
* @returns {{valid: boolean, error: string}}
*/
@ -559,7 +559,7 @@
/**
* Validate extension
* @param {object} ext
* @param {Object} ext
* @returns {boolean}
*/
showdown.validateExtension = function (ext) {
@ -2184,7 +2184,7 @@
/**
* Showdown Converter class
* @class
* @param {object} [converterOptions]
* @param {Object} [converterOptions]
* @returns {Converter}
*/
showdown.Converter = function (converterOptions) {

View File

@ -138,7 +138,7 @@
* Get the remaining string after finding a certain char
*
* @param {string} haystack String to to search in
* @param {array} chars Chars to search for
* @param {Array} chars Chars to search for
*
* @return {string}
*

View File

@ -89,7 +89,7 @@ export class TableView {
/**
* Get table header elements which provide sorting
*
* @return {array}
* @return {Array}
*
* @since 1.0.0
*/
@ -104,7 +104,7 @@ export class TableView {
/**
* Get table header elements which provide filter functionality
*
* @return {array}
* @return {Array}
*
* @since 1.0.0
*/
@ -118,7 +118,7 @@ export class TableView {
/**
* Get row elements which allow to swap the current row with another row
*
* @return {array}
* @return {Array}
*
* @since 1.0.0
*/