Skip to content

Commit

Permalink
fix: more compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
b-strauss committed Jan 25, 2017
1 parent ac58ea4 commit 2baa8ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/async/Completer.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ goog.require('goog.asserts');
*/
clulib.async.Completer = function () {
/**
* @type {function((T|Promise<T>)=)}
* @type {?(function((T|Promise<T>)=))}
* @private
*/
this.resolveFn_ = null;

/**
* @type {function(*=): void}
* @type {?(function(*=): void)}
* @private
*/
this.rejectFn_ = null;
Expand Down

0 comments on commit 2baa8ec

Please sign in to comment.