Skip to content

Commit

Permalink
fix type: flase -> false
Browse files Browse the repository at this point in the history
Signed-off-by: bin liu <[email protected]>
  • Loading branch information
liubin authored and gnprice committed Dec 3, 2022
1 parent 783e1a2 commit a99be31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ otherwise it will print `false` to stderr and set exit code to `1`.

```sh
$ toml check test.toml plugins.name2
flase
false
$ echo $?
1
$ toml check test.toml plugins.name
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn check(path: PathBuf, query: &str) {
std::process::exit(0);
}
}
eprintln!("flase");
eprintln!("false");
std::process::exit(1);
}

Expand Down

0 comments on commit a99be31

Please sign in to comment.