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

docs fix spelling issues #314

Merged
merged 2 commits into from
Oct 13, 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

![CI](https://github.com/nomic-io/nomic/actions/workflows/ci.yml/badge.svg)

Nomic is a blockchain which offers a decentralized custody solution for Bitcoin. Built on Turbofish’s [Orga](https://github.com/turbofish-org/orga), a custom high-performance blockchain application framework. Nomic mints nBTC, a token backed 1:1 with BTC, using [IBC](https://www.ibcprotocol.dev/) for secure and efficient bridging.
Nomic is a blockchain that offers a decentralized custody solution for Bitcoin. Built on Turbofish’s [Orga](https://github.com/turbofish-org/orga), a custom high-performance blockchain application framework. Nomic mints nBTC, a token backed 1:1 with BTC, using [IBC](https://www.ibcprotocol.dev/) for secure and efficient bridging.


## Running a Node
Expand All @@ -36,7 +36,7 @@ Nomic is an open-source project spearheaded by contributors. Anyone is able to c

Nomic is currently undergoing security audits.

Vulnerabilities should not be reported through public channels, including GitHub Issues. You can report a vunerability via GitHub's Private Vunerability Reporting or via the Nomic DAO Foundation at `[email protected]`.
Vulnerabilities should not be reported through public channels, including GitHub Issues. You can report a vulnerability via GitHub's Private Vulnerability Reporting or via the Nomic DAO Foundation at `[email protected]`.

[Report a Vulnerability](https://github.com/nomic-io/nomic/security/advisories/new)

Expand Down
8 changes: 4 additions & 4 deletions src/bin/nomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ pub struct StartCmd {
/// home directory when initializing.
#[clap(long)]
pub validator_key: Option<String>,
/// Copies the P2P privaete key at the specified path to the node's home
/// Copies the P2P private key at the specified path to the node's home
/// directory when initializing.
#[clap(long)]
pub node_key: Option<String>,
Expand Down Expand Up @@ -2257,7 +2257,7 @@ impl SigningStatusCmd {
}

/// Attempts to recover a deposit which has not yet been processed by the
/// Nomic network by relaying a proof of its confirmation on the Bitcoin
/// Nomic network by relaying proof of its confirmation on the Bitcoin
/// network.
///
/// This command is useful when a deposit has been made to the network and
Expand Down Expand Up @@ -2298,7 +2298,7 @@ pub struct RecoverDepositCmd {
/// The Nomic bech32 wallet address associated with the deposit.
#[clap(long)]
nomic_addr: Address,
/// The Bitcoin address the deposit was made to.
/// The Bitcoin address to the deposit was made to.
#[clap(long)]
deposit_addr: bitcoin::Address,
/// The Bitcoin block hash the deposit transaction was confirmed in.
Expand All @@ -2312,7 +2312,7 @@ pub struct RecoverDepositCmd {
#[clap(long)]
vout: u32,

/// The path to a file containig the indexes and reserve scripts of
/// The path to a file containing the indexes and reserve scripts of
/// signatories to search. This can be generated with the
/// `get-reserve-scripts` binary.
#[clap(long)]
Expand Down
Loading