summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
index 1a26d77..1327392 100644
--- a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
+++ b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
@@ -28,7 +28,7 @@ export async function getWebCrypto(): Promise<Crypto> {
const _crypto: Crypto = globalThis.crypto;
if (!_crypto) {
- // We tried to access it both in Node and
+ // We tried to access it both in Node and globally, so bail out
throw new MissingWebCrypto();
}