Skip to content

Commit

Permalink
remove duplicate words
Browse files Browse the repository at this point in the history
  • Loading branch information
winniehere committed Jul 1, 2024
1 parent b545d75 commit 51d2f99
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit 51d2f99

Please sign in to comment.