File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ To use `glob`, add this to your `Cargo.toml`:
1616glob = " 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
2222extern crate glob;
Original file line number Diff line number Diff line change 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 ) ;
You can’t perform that action at this time.
0 commit comments