Skip to content

Commit 544c56b

Browse files
committed
update README
1 parent e01ffd6 commit 544c56b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,13 @@ For example, it will print the following instead:
215215
```
216216
There are 1 warnings in 1 files.
217217
##[Warning(clippy::unwrap_used)
218+
@@ -3,2 +3,3 @@ fn main() {
218219
fn main() {
219220
let s = std::fs::read_to_string("Cargo.toml").unwrap();
220221
println!("{s}");
221222
}
222223
=== 19a3477889393ea2cdd0edcb5e6ab30c ===
224+
@@ -3,2 +3,3 @@ fn main() {
223225
fn main() {
224226
if let Ok(s) = std::fs::read_to_string("Cargo.toml") {
225227
println!("{s}");

0 commit comments

Comments
 (0)