Skip to content

Commit 854bb3f

Browse files
authored
fix: Fix typos in documentation and code comments (#3469)
Description: This pull request corrects minor typos in code comments and documentation: - Fixed "procotol" to "protocol" in MultichainRouter.ts - Fixed "coercable" to "coercible" in base64.ts
1 parent be76cdf commit 854bb3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/snaps-controllers/src/multichain/MultichainRouter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export class MultichainRouter {
267267

268268
/**
269269
* Handle an incoming JSON-RPC request tied to a specific scope by routing
270-
* to either a procotol Snap or an account Snap.
270+
* to either a protocol Snap or an account Snap.
271271
*
272272
* Note: Addresses are considered case sensitive by the MultichainRouter as
273273
* not all non-EVM chains are case insensitive.

packages/snaps-utils/src/base64.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { VirtualFile } from './virtual-file';
66
/**
77
* Provides fast, asynchronous base64 encoding.
88
*
9-
* @param input - The input value, assumed to be coercable to bytes.
9+
* @param input - The input value, assumed to be coercible to bytes.
1010
* @returns A base64 string.
1111
*/
1212
export async function encodeBase64(input: Uint8Array | VirtualFile | string) {

0 commit comments

Comments
 (0)