diff --git a/external-crates/move/crates/move-ir-to-bytecode/src/compiler.rs b/external-crates/move/crates/move-ir-to-bytecode/src/compiler.rs index ec91964d..729afeba 100644 --- a/external-crates/move/crates/move-ir-to-bytecode/src/compiler.rs +++ b/external-crates/move/crates/move-ir-to-bytecode/src/compiler.rs @@ -122,7 +122,7 @@ struct FunctionFrame { local_types: Signature, // i64 to allow the bytecode verifier to catch errors of // - negative stack sizes - // - excessivley large stack sizes + // - excessively large stack sizes // The max stack depth of the file_format is set as u16. // Theoretically, we could use a BigInt here, but that is probably overkill for any testing max_stack_depth: i64, diff --git a/external-crates/move/crates/move-ir-to-bytecode/src/context.rs b/external-crates/move/crates/move-ir-to-bytecode/src/context.rs index 25ed2e71..26cc01bd 100644 --- a/external-crates/move/crates/move-ir-to-bytecode/src/context.rs +++ b/external-crates/move/crates/move-ir-to-bytecode/src/context.rs @@ -181,7 +181,7 @@ impl StoredCompiledDependency { } pub(crate) enum CompiledDependency<'a> { - /// Simple `CompiledDependecyView` where the borrowed `CompiledModule` is held elsewehere, + /// Simple `CompiledDependencyView` where the borrowed `CompiledModule` is held elsewhere, /// Commonly, it is borrowed from outside of the compilers API Borrowed(CompiledDependencyView<'a>), /// `Stored` holds the `CompiledModule` as well as the `CompiledDependencyView` into the module diff --git a/external-crates/move/crates/move-package/src/resolution/resolving_table.rs b/external-crates/move/crates/move-package/src/resolution/resolving_table.rs index 2b82f045..c34618dc 100644 --- a/external-crates/move/crates/move-package/src/resolution/resolving_table.rs +++ b/external-crates/move/crates/move-package/src/resolution/resolving_table.rs @@ -153,7 +153,7 @@ impl ResolvingTable { gp } - /// Chase links from the assignent at index `ix` until a non-link `Assignment` is found, and + /// Chase links from the assignment at index `ix` until a non-link `Assignment` is found, and /// return a reference to that. fn parent(&self, mut ix: usize) -> &Option { loop {