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
2 changes: 1 addition & 1 deletion precompile/modules/initia_stdlib/doc/function_info.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Creates a new function info from names.

## Function `check_dispatch_type_compatibility`

Check if the dispatch target function meets the type requirements of the disptach entry point.
Check if the dispatch target function meets the type requirements of the dispatch entry point.

framework_function is the dispatch native function defined in the initia_std.
dispatch_target is the function passed in by the user.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module initia_std::function_info {
FunctionInfo { module_address, module_name, function_name }
}

/// Check if the dispatch target function meets the type requirements of the disptach entry point.
/// Check if the dispatch target function meets the type requirements of the dispatch entry point.
///
/// framework_function is the dispatch native function defined in the initia_std.
/// dispatch_target is the function passed in by the user.
Expand Down
2 changes: 1 addition & 1 deletion precompile/modules/initia_stdlib/sources/staking.move
Original file line number Diff line number Diff line change
Expand Up @@ -2187,7 +2187,7 @@ module initia_std::staking {

#[test]
#[expected_failure(abort_code = 0x10008, location = Self)]
public fun test_staking_merge_delegation_validator_mistmatch() acquires ModuleStore {
public fun test_staking_merge_delegation_validator_mismatch() acquires ModuleStore {
test_setup();

let delegation1 = Delegation {
Expand Down
2 changes: 1 addition & 1 deletion precompile/modules/minitia_stdlib/doc/function_info.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Creates a new function info from names.

## Function `check_dispatch_type_compatibility`

Check if the dispatch target function meets the type requirements of the disptach entry point.
Check if the dispatch target function meets the type requirements of the dispatch entry point.

framework_function is the dispatch native function defined in the minitia_std.
dispatch_target is the function passed in by the user.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module minitia_std::function_info {
FunctionInfo { module_address, module_name, function_name }
}

/// Check if the dispatch target function meets the type requirements of the disptach entry point.
/// Check if the dispatch target function meets the type requirements of the dispatch entry point.
///
/// framework_function is the dispatch native function defined in the minitia_std.
/// dispatch_target is the function passed in by the user.
Expand Down