Skip to content

Commit

Permalink
Fix typos (solana-labs#35234)
Browse files Browse the repository at this point in the history
* fix typos

* fix typo

* fix typos

* fix typo
  • Loading branch information
omahs authored Feb 19, 2024
1 parent 2ec136a commit d87e7bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cli/src/cluster_query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ impl ClusterQuerySubCommands for App<'_, '_> {
.takes_value(true)
.value_name("BLOCKHASH")
.validator(is_hash)
.help("Query fees for BLOCKHASH instead of the the most recent blockhash"),
.help("Query fees for BLOCKHASH instead of the most recent blockhash"),
),
)
.subcommand(
Expand Down Expand Up @@ -233,7 +233,7 @@ impl ClusterQuerySubCommands for App<'_, '_> {
Arg::with_name("print_accounts")
.long("print-accounts")
.takes_value(false)
.help("Print list of non-circualting account addresses"),
.help("Print list of non-circulating account addresses"),
),
)
.subcommand(
Expand Down
2 changes: 1 addition & 1 deletion docs/src/proposals.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To submit a new design proposal for Solana:
Once a design proposal has been accepted, the PR will be merged into the `master` branch of the Solana repo. This also signifies the maintainers support your plan of attack.

> **NOTE:** The merging of the PR will **automatically** create a link in the "Accepted Proposals" table of contents sidebar.
> Once approved, continue to submit PRs that implement the proposal. When the implementation reveals the need for tweaks to the proposal, be sure to update the "accepted proposal" document and have these change reviewed by the same approving maintainers.
> Once approved, continue to submit PRs that implement the proposal. When the implementation reveals the need for tweaks to the proposal, be sure to update the "accepted proposal" document and have these changes reviewed by the same approving maintainers.
### After Implemented

Expand Down
2 changes: 1 addition & 1 deletion docs/src/validator/geyser.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ The following are the tables in the Postgres database
When a validator lacks sufficient compute power, the overhead of saving the
account data can cause it to fall behind the network especially when all
accounts or a large number of accounts are selected. The node hosting the
PostgreSQL database need to be powerful enough to handle the database loads
PostgreSQL database needs to be powerful enough to handle the database loads
as well. It has been found using GCP n2-standard-64 machine type for the
validator and n2-highmem-32 for the PostgreSQL node is adequate for handling
transmitting all accounts while keeping up with the network. In addition, it is
Expand Down
4 changes: 2 additions & 2 deletions geyser-plugin-manager/src/geyser_plugin_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,10 @@ pub enum GeyserPluginManagerRequest {

#[derive(thiserror::Error, Debug)]
pub enum GeyserPluginManagerError {
#[error("Cannot open the the plugin config file")]
#[error("Cannot open the plugin config file")]
CannotOpenConfigFile(String),

#[error("Cannot read the the plugin config file")]
#[error("Cannot read the plugin config file")]
CannotReadConfigFile(String),

#[error("The config file is not in a valid Json format")]
Expand Down

0 comments on commit d87e7bc

Please sign in to comment.