diff --git a/README.md b/README.md index 3ad9ff8..753c1ca 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To use `glob`, add this to your `Cargo.toml`: glob = "0.3.2" ``` -If you're using Rust 1.30 or earlier, or edition 2015, add this to your crate root: +If you are using Rust 1.30 or earlier, or edition 2015, add this to your crate root: ```rust extern crate glob; diff --git a/tests/glob-std.rs b/tests/glob-std.rs index 8bd77f0..d462a6e 100644 --- a/tests/glob-std.rs +++ b/tests/glob-std.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-windows TempDir may cause IoError on windows: #10462 +// ignore-windows TempDir may cause IoError on Windows: #10462 #![cfg_attr(test, deny(warnings))] @@ -85,7 +85,7 @@ fn main() { // a broken symlink mk_symlink_file("aaa/setsuna", "aaa/kazusa"); - // windows does not allow `*` or `?` characters to exist in filenames + // Windows does not allow `*` or `?` characters to exist in filenames if env::consts::FAMILY != "windows" { mk_file("bbb/specials/*", false); mk_file("bbb/specials/?", false);