Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<AccountAddress> {
loop {
Expand Down