From 82381e7e80ab49ffc2f273b553c96cd99ab7f4b6 Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Tue, 19 Nov 2024 12:06:32 +0300 Subject: [PATCH] Typo Update builtins.ts Fix typo in UndefinedValue class constructor --- src/errors/builtins.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/errors/builtins.ts b/src/errors/builtins.ts index 407f017e..9912808e 100644 --- a/src/errors/builtins.ts +++ b/src/errors/builtins.ts @@ -4,11 +4,11 @@ import { Felt } from 'primitives/felt'; /** Errors related to builtins */ class BuiltinError extends Error {} -/** Value cannot be infered from undefined cell value */ +/** Value cannot be inferred from undefined cell value */ export class UndefinedValue extends BuiltinError { constructor(offset: number) { super( - `Value cannot be infered from undefined cell value at offset ${offset}` + `Value cannot be inferred from undefined cell value at offset ${offset}` ); } }