Skip to content

Commit

Permalink
Fix typos (ordinals#2768)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolou86 authored Nov 29, 2023
1 parent 931b2db commit 9281108
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/save-ord-dev-state
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd /var/lib/ord

mkdir -p /var/lib/ord/$REVISION

# Still have to manually set --index-sats or --heigh-limit
# Still have to manually set --index-sats or --height-limit
# --height-limit 100000 \
/usr/local/bin/ord --bitcoin-data-dir /var/lib/bitcoind \
--data-dir /var/lib/ord \
Expand Down
2 changes: 1 addition & 1 deletion docs/src/guides/teleburning.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Teleburning an asset means something like, "I'm out. Find me on Bitcoin."

Teleburn addresses are derived from inscription IDs. They have no corresponding
private key, so assets sent to a teleburn address are burned. Currently, only
Ethereum teleburn addresses are suppported. Pull requests adding teleburn
Ethereum teleburn addresses are supported. Pull requests adding teleburn
addresses for other chains are welcome.

Ethereum
Expand Down
2 changes: 1 addition & 1 deletion src/inscription_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl Display for ParseError {
match self {
Self::Character(c) => write!(f, "invalid character: '{c}'"),
Self::Length(len) => write!(f, "invalid length: {len}"),
Self::Separator(c) => write!(f, "invalid seprator: `{c}`"),
Self::Separator(c) => write!(f, "invalid separator: `{c}`"),
Self::Txid(err) => write!(f, "invalid txid: {err}"),
Self::Index(err) => write!(f, "invalid index: {err}"),
}
Expand Down
4 changes: 2 additions & 2 deletions src/subcommand/wallet/inscribe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub(crate) struct Inscribe {
pub(crate) file: Option<PathBuf>,
#[arg(
long,
help = "Include JSON in file at <METADATA> convered to CBOR as inscription metadata",
help = "Include JSON in file at <METADATA> converted to CBOR as inscription metadata",
conflicts_with = "cbor_metadata"
)]
pub(crate) json_metadata: Option<PathBuf>,
Expand Down Expand Up @@ -311,7 +311,7 @@ mod tests {
}

#[test]
fn inscribe_tansactions_opt_in_to_rbf() {
fn inscribe_transactions_opt_in_to_rbf() {
let utxos = vec![(outpoint(1), Amount::from_sat(20000))];
let inscription = inscription("text/plain", "ord");
let commit_address = change(0);
Expand Down

0 comments on commit 9281108

Please sign in to comment.