Skip to content

Commit 2275a84

Browse files
authored
chore: fix some typos in comment (#2183)
Signed-off-by: deterclosed <fliter@outlook.com>
1 parent 224924e commit 2275a84

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

apps/api-reference/src/apis/evm/get-price-unsafe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ParameterType } from "../../components/EvmApi";
44
export const getPriceUnsafe = readApi<"id">({
55
name: "getPriceUnsafe",
66
summary:
7-
"Get the **last updated** price object for the requested price feed ID. _Caution: This function may return a price from arbitrarily in the the past_",
7+
"Get the **last updated** price object for the requested price feed ID. _Caution: This function may return a price from arbitrarily in the past_",
88
description: `
99
This method returns the price object containing **last updated** price for the requested price feed ID.
1010

apps/hermes/server/src/config/pythnet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub struct Options {
1111
#[arg(env = "PYTHNET_WS_ADDR")]
1212
pub ws_addr: String,
1313

14-
/// Addres of a PythNet compatible HTP RPC endpoint.
14+
/// Address of a PythNet compatible HTP RPC endpoint.
1515
#[arg(long = "pythnet-http-addr")]
1616
#[arg(env = "PYTHNET_HTTP_ADDR")]
1717
pub http_addr: String,

apps/hermes/server/src/network/wormhole.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl std::fmt::Display for GuardianSet {
3030
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
3131
write!(f, "[")?;
3232
for (i, key) in self.keys.iter().enumerate() {
33-
// Comma seperated printing of the keys using hex encoding.
33+
// Comma separated printing of the keys using hex encoding.
3434
if i != 0 {
3535
write!(f, ", ")?;
3636
}

target_chains/solana/sdk/js/pyth_solana_receiver/src/idl/wormhole_core_bridge_solana.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ export type WormholeCoreBridgeSolana = {
601601
name: "signerIndices";
602602
docs: [
603603
"Indices of verified guardian signatures, where -1 indicates a missing value. There is a",
604-
"missing value if the guardian at this index is not expected to have its signature verfied by",
604+
"missing value if the guardian at this index is not expected to have its signature verified by",
605605
"the Sig Verify native program in the instruction invoked prior).",
606606
"",
607607
"NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only",
@@ -2207,7 +2207,7 @@ export const IDL: WormholeCoreBridgeSolana = {
22072207
name: "signerIndices",
22082208
docs: [
22092209
"Indices of verified guardian signatures, where -1 indicates a missing value. There is a",
2210-
"missing value if the guardian at this index is not expected to have its signature verfied by",
2210+
"missing value if the guardian at this index is not expected to have its signature verified by",
22112211
"the Sig Verify native program in the instruction invoked prior).",
22122212
"",
22132213
"NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only",

0 commit comments

Comments
 (0)