From 6f014ed0999b27723c590a693849061e4b7a0a91 Mon Sep 17 00:00:00 2001 From: Aldwin Vlasblom Date: Tue, 5 May 2020 19:11:41 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: David Chambers --- src/future.js | 2 +- src/par.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/future.js b/src/future.js index dd7a1804..8d71cf63 100644 --- a/src/future.js +++ b/src/future.js @@ -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. diff --git a/src/par.js b/src/par.js index c92f5e81..e6f7761c 100644 --- a/src/par.js +++ b/src/par.js @@ -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.