Skip to content

Commit 9397b36

Browse files
committed
typo and comments
1 parent 1921fa5 commit 9397b36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bin/cargo-miri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ path = "lib.rs"
266266
let sysroot = if is_host { dir.join("HOST") } else { PathBuf::from(dir) };
267267
std::env::set_var("MIRI_SYSROOT", &sysroot);
268268
if !ask_user {
269-
println!("A libstd for miri is now available in `{}`", sysroot.display());
269+
println!("A libstd for Miri is now available in `{}`", sysroot.display());
270270
}
271271
}
272272

tests/run-pass/hashmap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ fn main() {
2121
}
2222
assert_eq!(map.values().fold(0, |x, y| x+y), num*(num-1)/2);
2323

24-
// TODO: Test Entry API
24+
// TODO: Test Entry API, Iterators, ...
2525
}

0 commit comments

Comments
 (0)