Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: David Chambers <dc@davidchambers.me>
  • Loading branch information
Avaq and davidchambers committed May 5, 2020
1 parent 4f05f05 commit 6f014ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/future.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function isFuture(x){
return x instanceof Future || type(x) === $$type;
}

// Compliance to sanctuary-type-identifiers version 1 and 2.
// Compliance with sanctuary-type-identifiers versions 1 and 2.
// In order to prevent sanctuary-type-identifiers version 3 from identifying
// Future as a member of $$type, we ensure that Future.constructor.prototype
// is equal to Future.
Expand Down
2 changes: 1 addition & 1 deletion src/par.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function Par (sequential){
var $$type = namespace + '/ConcurrentFuture@' + version;
var zeroInstance = new ConcurrentFuture(never);

// Compliance to sanctuary-type-identifiers version 1 and 2.
// Compliance with sanctuary-type-identifiers versions 1 and 2.
// In order to prevent sanctuary-type-identifiers version 3 from identifying
// Par as a member of $$type, we ensure that Par.constructor.prototype is
// equal to Par.
Expand Down

0 comments on commit 6f014ed

Please sign in to comment.