Skip to content

Commit

Permalink
Correcting typos / spelling (#4610)
Browse files Browse the repository at this point in the history
  • Loading branch information
randall-Mysten committed Sep 14, 2022
1 parent 4eb0ed1 commit 82bd9f6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit 82bd9f6

Please sign in to comment.