From b25a270e3535e7c40f1a91e353135b5c5daea64c Mon Sep 17 00:00:00 2001 From: Haled Odat <8566042+HalidOdat@users.noreply.github.com> Date: Sat, 27 Apr 2024 06:46:28 +0200 Subject: [PATCH] Fix typo --- core/engine/src/bytecompiler/declarations.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/engine/src/bytecompiler/declarations.rs b/core/engine/src/bytecompiler/declarations.rs index 0aabd02c23..9b80e4622f 100644 --- a/core/engine/src/bytecompiler/declarations.rs +++ b/core/engine/src/bytecompiler/declarations.rs @@ -28,7 +28,7 @@ use super::{Operand, ToJsString}; /// `GlobalDeclarationInstantiation ( script, env )` /// /// This diverges from the specification by separating the context from the compilation process. -/// Many steps are skiped that are done during bytecode compilation. +/// Many steps are skipped that are done during bytecode compilation. /// /// More information: /// - [ECMAScript reference][spec] @@ -49,7 +49,7 @@ pub(crate) fn global_declaration_instantiation_context( /// `GlobalDeclarationInstantiation ( script, env )` /// /// This diverges from the specification by separating the context from the compilation process. -/// Many steps are skiped that are done during bytecode compilation. +/// Many steps are skipped that are done during bytecode compilation. /// /// More information: /// - [ECMAScript reference][spec] @@ -196,7 +196,7 @@ pub(crate) fn global_declaration_instantiation_context( /// `EvalDeclarationInstantiation ( body, varEnv, lexEnv, privateEnv, strict )` /// /// This diverges from the specification by separating the context from the compilation process. -/// Many steps are skiped that are done during bytecode compilation. +/// Many steps are skipped that are done during bytecode compilation. /// /// More information: /// - [ECMAScript reference][spec]