Skip to content

Commit 2f53984

Browse files
committed
Revert "docs: fix jsdoc"
This reverts commit ff0a086.
1 parent 2ae5f73 commit 2f53984

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

lib/node_modules/@stdlib/repl/lib/auto_close_pairs.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ function AutoCloser( rli ) {
6565
*
6666
* @name beforeKeypress
6767
* @memberof AutoCloser.prototype
68+
* @param {string} data - input data
69+
* @param {Object} key - key object
6870
* @returns {boolean} boolean indicating whether auto-delete was successful
6971
*/
7072
setNonEnumerableReadOnly( AutoCloser.prototype, 'beforeKeypress', function beforeKeypress() {
@@ -140,6 +142,7 @@ setNonEnumerableReadOnly( AutoCloser.prototype, 'beforeKeypress', function befor
140142
* @name onKeypress
141143
* @memberof AutoCloser.prototype
142144
* @param {string} data - input data
145+
* @param {Object} key - key object
143146
* @returns {boolean} boolean indicating whether auto-close was successful
144147
*/
145148
setNonEnumerableReadOnly( AutoCloser.prototype, 'onKeypress', function onKeypress( data ) {

lib/node_modules/@stdlib/repl/test/integration/test.auto_close_pairs.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ function moveBack( stream, N ) {
172172
* @private
173173
* @param {Object} t - test object
174174
* @param {Object} fixture - fixture object
175+
* @param {string} fixture.expression - incomplete expression string
176+
* @param {NonNegativeInteger} fixture.cursor - cursor position for inserting a character to trigger an insertion
175177
* @param {Function} done - callback to invoke upon completion
176178
*/
177179
function assertAutoClose( t, fixture, done ) {
@@ -236,6 +238,8 @@ function assertAutoClose( t, fixture, done ) {
236238
* @private
237239
* @param {Object} t - test object
238240
* @param {Object} fixture - fixture object
241+
* @param {string} fixture.expression - incomplete expression string
242+
* @param {NonNegativeInteger} fixture.cursor - cursor position for inserting a character to trigger an insertion
239243
* @param {Function} done - callback to invoke upon completion
240244
*/
241245
function assertNoAutoClose( t, fixture, done ) {

0 commit comments

Comments
 (0)