Skip to content

Commit 1bcb420

Browse files
authored
Update utils.ts
1 parent 330e674 commit 1bcb420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/packages/sync-test/data/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function serialize(obj: unknown): string {
1313
export function deserialize(blob: string): Record<string, unknown> {
1414
const obj = JSON.parse(blob);
1515

16-
// Check whether the value matches the mattern `bigint(${number}n)`
16+
// Check whether the value matches the pattern `bigint(${number}n)`
1717
// (serialization of bigint in `serialize`)
1818
// and turn it back into a bigint
1919
const regex = /^bigint\((-?\d+)\)$/; // Regular expression pattern.

0 commit comments

Comments
 (0)