Skip to content

Commit 8d32b4c

Browse files
authored
chore: remove repetitive words (#1524)
1 parent a203808 commit 8d32b4c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

target_chains/aptos/contracts/sources/batch_price_attestation.move

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ module pyth::batch_price_attestation {
133133
// the attester.
134134

135135
// If status is trading, use the current price.
136-
// If not, use the the last known trading price.
136+
// If not, use the last known trading price.
137137
let current_price = pyth::price::new(price, conf, expo, publish_time);
138138
if (status != price_status::new_trading()) {
139139
current_price = pyth::price::new(prev_price, prev_conf, expo, prev_publish_time);

target_chains/ethereum/entropy_sdk/solidity/EntropyStructs.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ contract EntropyStructs {
1111
// and instead is stored to help providers track where they are in the hash chain.
1212
bytes32 originalCommitment;
1313
uint64 originalCommitmentSequenceNumber;
14-
// Metadata for the current commitment. Providers may optionally use this field to to help
14+
// Metadata for the current commitment. Providers may optionally use this field to help
1515
// manage rotations (i.e., to pick the sequence number from the correct hash chain).
1616
bytes commitmentMetadata;
1717
// Optional URI where clients can retrieve revelations for the provider.

target_chains/fuel/contracts/pyth-interface/src/interface.sw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ abi PythCore {
5353
/// # Reverts
5454
///
5555
/// * When the EMA price is not available.
56-
/// * When the the EMA price wasn't updated recently enough.
56+
/// * When the EMA price wasn't updated recently enough.
5757
#[storage(read)]
5858
fn ema_price_no_older_than(time_period: u64, price_feed_id: PriceFeedId) -> Price;
5959

target_chains/solana/sdk/js/pyth_solana_receiver/src/vaa.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export async function buildEncodedVaaCreateInstruction(
7979
}
8080

8181
/**
82-
* Writing the VAA to to an encoded VAA account is done in 2 instructions.
82+
* Writing the VAA to an encoded VAA account is done in 2 instructions.
8383
*
8484
* The first one writes the first `VAA_SPLIT_INDEX` bytes and the second one writes the rest.
8585
*

target_chains/sui/contracts/sources/batch_price_attestation.move

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ module pyth::batch_price_attestation {
135135
// the attester.
136136

137137
// If status is trading, use the current price.
138-
// If not, use the the last known trading price.
138+
// If not, use the last known trading price.
139139
let current_price = pyth::price::new(price, conf, expo, publish_time);
140140
if (status != price_status::new_trading()) {
141141
current_price = pyth::price::new(prev_price, prev_conf, expo, prev_publish_time);

0 commit comments

Comments
 (0)