Skip to content

Commit

Permalink
Fix return type JSDoc
Browse files Browse the repository at this point in the history
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
  • Loading branch information
fasttime and mdjermanovic committed May 8, 2023
1 parent 7aaef4a commit 93c0bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rules/indent.js
Expand Up @@ -152,7 +152,7 @@ class IndexMap {
/**
* Finds the value of the entry with the largest key less than or equal to the provided key
* @param {number} key The provided key
* @returns {number|undefined} The value of the found entry, or undefined if no such entry exists.
* @returns {*|undefined} The value of the found entry, or undefined if no such entry exists.
*/
findLastNotAfter(key) {
const values = this._values;
Expand Down

0 comments on commit 93c0bce

Please sign in to comment.