Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correcting typos / spelling #4610

Merged
merged 1 commit into from
Sep 14, 2022
Merged
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 crates/sui-core/src/authority_active/gossip/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ impl GossipMetrics {
.unwrap(),
total_attempts_cert_downloads: register_int_counter_with_registry!(
"gossip_total_attempts_cert_downloads",
"Total number of certs/effects download attemps through gossip/node sync process",
"Total number of certs/effects download attempts through gossip/node sync process",
registry,
)
.unwrap(),
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-framework/tests/bytecode_calibration_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0


// This module attemps to find the computational cost of bytecode instructions by measuring the time
// This module attempts to find the computational cost of bytecode instructions by measuring the time
// the instruction takes to execute.
// Isolating the bytecode is tricky, so we run two functions with and without the bytecode instruction
// The difference in execution times is the time the instruction takes
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-framework/tests/natives_calibration_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0


// This module attemps to find the computational cost of native function by measuring the time
// This module attempts to find the computational cost of native function by measuring the time
// the native takes to execute.
// Isolating the native function is tricky, so we run two functions with and without the native
// The difference in execution times is the time the native takes
Expand Down
2 changes: 1 addition & 1 deletion sui_programmability/examples/defi/sources/pool.move
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module defi::pool {
/// For when initial LSP amount is zero.
const EShareEmpty: u64 = 3;

/// For when someone attemps to add more liquidity than u128 Math allows.
/// For when someone attempts to add more liquidity than u128 Math allows.
const EPoolFull: u64 = 4;

/// The integer scaling setting for fees calculation.
Expand Down