Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove duplicate words #4686

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/bin/pclientd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pub enum Command {
parse(try_from_str = Url::parse)
)]
grpc_url: Url,
/// Sets the address to bind to to serve gRPC.
/// Sets the address to bind to serve gRPC.
#[clap(long, display_order = 900, default_value = "127.0.0.1:8081")]
bind_addr: SocketAddr,
},
Expand Down
2 changes: 1 addition & 1 deletion crates/bin/pd/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ pub enum RootCommand {
/// If set, force a migration to occur even if the chain is not halted.
#[clap(long, display_order = 1000)]
force: bool,
/// If set, edit local state to to permit the node to start, despite
/// If set, edit local state to permit the node to start, despite
/// a pre-existing halt order, e.g. via governance. This option
/// can be useful for relayer operators, to run a temporary archive node
/// across upgrade boundaries.
Expand Down
2 changes: 1 addition & 1 deletion crates/bin/pd/tests/network_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async fn check_cors_headers() -> anyhow::Result<()> {

#[ignore]
#[tokio::test]
/// Confirm that the a naive GET on the gRPC route returns a 200,
/// Confirm that the naive GET on the gRPC route returns a 200,
/// as a sanity check that we haven't badly broken the minifront static asset bundling.
/// This check does *not* confirm that page works correctly, but it does confirm
/// it's at least loading, which guards against path regressions in the asset building.
Expand Down
2 changes: 1 addition & 1 deletion crates/core/component/dex/src/component/router/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async fn path_extension_basic() {
.expect("extend_to failed")
.expect("path to penumbra not found");

// This price should be more expensive since the the cheaper path along the mispriced gn:pusd position no longer exists.
// This price should be more expensive since the cheaper path along the mispriced gn:pusd position no longer exists.
let expensive_price = path.price;

assert!(
Expand Down
Loading