Skip to content

Commit

Permalink
Correct quotes, whitespace and truth in debounce comment (jashkenas#2858
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jgonggrijp committed Aug 1, 2020
1 parent a010659 commit 60d2f63
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions modules/debounce.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import restArguments from './restArguments.js';
import delay from './delay.js';

// When a sequence of calls of the returned function ends, the argument
// function is triggered. The end of a sequence is defined by the wait
// parameter. If immediate is passed, the argument function will be
// triggered at the beginning of the sequence as well.
// function is triggered. The end of a sequence is defined by the `wait`
// parameter. If `immediate` is passed, the argument function will be
// triggered at the beginning of the sequence instead of at the end.
export default function debounce(func, wait, immediate) {
var timeout, result;

Expand Down
6 changes: 3 additions & 3 deletions underscore-esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions underscore.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 60d2f63

Please sign in to comment.