Update README.md

fix INPUT
This commit is contained in:
bestgopher 2021-01-26 15:59:29 +08:00 committed by GitHub
parent d7f6748887
commit 70f49d9fc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,7 @@ fn main() {
.get_matches();
// You can check the value provided by positional arguments, or option arguments
if let Some(i) = matches.value_of("input") {
if let Some(i) = matches.value_of("INPUT") {
println!("Value for input: {}", i);
}