Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 77821a3

Browse files
authored
chore: fix some comments (#7564)
Signed-off-by: goodactive <[email protected]>
1 parent a3e484f commit 77821a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

binary-option/client/binary_option.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def __init__(self, cfg):
140140

141141
def initialize(self, api_endpoint, escrow_mint, decimals=2, skip_confirmation=True):
142142
msg = ""
143-
# Initialize Clinet
143+
# Initialize Client
144144
client = Client(api_endpoint)
145145
msg += "Initialized client"
146146
# Create account objects

token-lending/program/src/state/reserve.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ impl ReserveFees {
755755
}
756756
}
757757

758-
/// Calculate fees exlusive or inclusive of an amount
758+
/// Calculate fees exclusive or inclusive of an amount
759759
pub enum FeeCalculation {
760760
/// Fee added to amount: fee = rate * amount
761761
Exclusive,

token/confidential-transfer/proof-extraction/src/burn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ impl BurnProofContext {
3232
range_proof_context: &BatchedRangeProofContext,
3333
) -> Result<Self, TokenProofExtractionError> {
3434
// The equality proof context consists of the source ElGamal public key, the new
35-
// source available balance ciphertext, and the new source avaialble
35+
// source available balance ciphertext, and the new source available
3636
// balance commitment. The public key should be checked with ciphertext
3737
// validity proof context for consistency and the commitment should be
3838
// checked with range proof for consistency. The public key and

token/confidential-transfer/proof-extraction/src/mint.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl MintProofContext {
5757

5858
// The range proof context consists of the Pedersen commitments and bit-lengths
5959
// for which the range proof is proved. The commitments must consist of
60-
// two commitments pertaining to the the
60+
// two commitments pertaining to the
6161
// low bits of the mint amount, and high bits of the mint
6262
// amount. These commitments must be checked for bit lengths `16` and
6363
// and `32`.

0 commit comments

Comments
 (0)