Skip to content

Commit 6d64e04

Browse files
committed
Fix parameter annotation
1 parent b08aab5 commit 6d64e04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/nlp/lda/lib/lda.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var fit = require( './fit.js' );
2525
* @private
2626
* @param {Array} vocab - vocabulary
2727
* @param {string} searchVal - search value
28-
* @returns {Integer} index in vocab if search value is found, -1 otherwise
28+
* @returns {integer} index in vocab if search value is found, -1 otherwise
2929
*/
3030
function findIndex( vocab, searchVal ) {
3131
var i;

lib/node_modules/@stdlib/plot/ctor/lib/plot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ Object.defineProperty( Plot.prototype, 'lineStyle', {
439439
*
440440
* @memberof Plot.prototype
441441
* @name lineOpacity
442-
* @type {(number|numberArray)}
442+
* @type {(number|NumberArray)}
443443
* @default '-'
444444
* @throws {TypeError} must be a number or number array
445445
* @throws {RangeError} must be a number on the interval `[0,1]`

0 commit comments

Comments
 (0)