Skip to content

Commit

Permalink
chore: Fixed spelling errors in some files. (matter-labs#945)
Browse files Browse the repository at this point in the history
## What ❔

Fixed spelling errors in some files.

## Why ❔

1. "skept" should be "skipped." This is a spelling error in the verb
form, and the correct form should be "skipped," which means to pass over
or omit something.

2. "messsage" should be "message." This is a spelling error in the word
"message," with the correct spelling being "message," referring to a
piece of information or communication.

Co-authored-by: Dustin Brickwood <[email protected]>
  • Loading branch information
keienWang and dutterbutter authored Jan 29, 2024
1 parent e659ece commit 2818d5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/lib/circuit_breaker/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl CircuitBreakerChecker {
return circuit_breaker_sender
.send(error)
.ok()
.context("failed to send circuit breaker messsage");
.context("failed to send circuit breaker message");
}
tokio::time::sleep(self.sync_interval).await;
}
Expand Down
2 changes: 1 addition & 1 deletion docs/specs/zk_evm/precompiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function montgomeryMul(multiplicand, multiplier) -> ret {

```solidity
/// @notice Computes the Montgomery modular inverse skipping the Montgomery reduction step.
/// @dev The Montgomery reduction step is skept because a modification in the binary extended Euclidean algorithm is used to compute the modular inverse.
/// @dev The Montgomery reduction step is skipped because a modification in the binary extended Euclidean algorithm is used to compute the modular inverse.
/// @dev See the function `binaryExtendedEuclideanAlgorithm` for further details.
/// @param a The field element in Montgomery form to compute the modular inverse of.
/// @return invmod The result of the Montgomery modular inverse (in Montgomery form).
Expand Down

0 comments on commit 2818d5f

Please sign in to comment.