Skip to content

Commit b556cac

Browse files
committed
chore: make some documents clearer
Signed-off-by: reddaisyy <[email protected]>
1 parent 335da33 commit b556cac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To use `glob`, add this to your `Cargo.toml`:
1616
glob = "0.3.2"
1717
```
1818

19-
If you're using Rust 1.30 or earlier, or edition 2015, add this to your crate root:
19+
If you are using Rust 1.30 or earlier, or edition 2015, add this to your crate root:
2020

2121
```rust
2222
extern crate glob;

tests/glob-std.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-windows TempDir may cause IoError on windows: #10462
11+
// ignore-windows TempDir may cause IoError on Windows: #10462
1212

1313
#![cfg_attr(test, deny(warnings))]
1414

@@ -85,7 +85,7 @@ fn main() {
8585
// a broken symlink
8686
mk_symlink_file("aaa/setsuna", "aaa/kazusa");
8787

88-
// windows does not allow `*` or `?` characters to exist in filenames
88+
// Windows does not allow `*` or `?` characters to exist in filenames
8989
if env::consts::FAMILY != "windows" {
9090
mk_file("bbb/specials/*", false);
9191
mk_file("bbb/specials/?", false);

0 commit comments

Comments
 (0)