From 929a6d5facfb5dff579f042cf9c321a7c21dd286 Mon Sep 17 00:00:00 2001 From: hanmz Date: Tue, 23 Apr 2024 19:19:20 +0800 Subject: [PATCH] Fix typos in base64.ts Signed-off-by: hanmz --- packages/snaps-utils/src/base64.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/snaps-utils/src/base64.ts b/packages/snaps-utils/src/base64.ts index 2aa3e18087..fd0ba07d54 100644 --- a/packages/snaps-utils/src/base64.ts +++ b/packages/snaps-utils/src/base64.ts @@ -6,7 +6,7 @@ import type { VirtualFile } from './virtual-file'; /** * Provides fast, asynchronous base64 encoding. * - * @param input - The input value, assumed to be coercable to bytes. + * @param input - The input value, assumed to be coercible to bytes. * @returns A base64 string. */ export async function encodeBase64(input: Uint8Array | VirtualFile | string) {