Skip to content

Commit

Permalink
fix cast autocompletion
Browse files Browse the repository at this point in the history
  • Loading branch information
clifton committed Jan 15, 2022
1 parent c0e534c commit 9c83e6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "3.0.6", features = [
clap = { version = "3.0.7", features = [
"derive",
"env",
"unicode",
"wrap_help",
] }
clap_complete = "3.0.2"
clap_complete = "3.0.3"
foundry-utils = { path = "../utils" }
forge = { path = "../forge" }
cast = { path = "../cast" }
Expand Down
2 changes: 1 addition & 1 deletion cli/src/opts/cast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ pub enum Subcommands {
about = "Generate contract's interface from ABI. Currently it doesn't support ABI encoder V2"
)]
Interface {
#[clap(help = "The contract's address or path to ABI file")]
#[clap(help = "The contracts address or path to ABI file")]
path_or_address: String,
#[clap(long, short, default_value = "^0.8.10", help = "pragma version")]
pragma: String,
Expand Down

0 comments on commit 9c83e6f

Please sign in to comment.