summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'packages/browser/src/helpers')
-rw-r--r--packages/browser/src/helpers/toUint8Array.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/helpers/toUint8Array.ts b/packages/browser/src/helpers/toUint8Array.ts
index a807a88..ed4aa5d 100644
--- a/packages/browser/src/helpers/toUint8Array.ts
+++ b/packages/browser/src/helpers/toUint8Array.ts
@@ -1,6 +1,6 @@
/**
- * A helper method to convert a string sent from the server to a Uint8Array the authenticator will
- * expect.
+ * A helper method to convert an arbitrary string sent from the server to a Uint8Array the
+ * authenticator will expect.
*/
export default function toUint8Array(value: string): Uint8Array {
return Uint8Array.from(value, c => c.charCodeAt(0));