Browse Source

Fix typo

pull/3829/head
Haled Odat 2 weeks ago committed by GitHub
parent
commit
b25a270e35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      core/engine/src/bytecompiler/declarations.rs

6
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]

Loading…
Cancel
Save