Skip to content

Commit

Permalink
Fix types.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Mar 26, 2019
1 parent 36de1b8 commit 9b31b33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/fsevents-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ constructor(fsW) {

/**
* Handle symlinks encountered during directory scan
* @param {String} watchPath - string, file/dir path to be watched with fsevents
* @param {String} realPath - string, real path (in case of symlinks)
* @param {Function} transform - function, path transformer
* @param {Function} globFilter - function, path filter in case a glob pattern was provided
* @param {String} watchPath - file/dir path to be watched with fsevents
* @param {String} realPath - real path (in case of symlinks)
* @param {Function} transform - path transformer
* @param {Function} globFilter - path filter in case a glob pattern was provided
* @returns {Function} closer for the watcher instance
*/
_watchWithFsEvents(watchPath, realPath, transform, globFilter) {
Expand Down

0 comments on commit 9b31b33

Please sign in to comment.