Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions tests/glob-std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]

Expand Down Expand Up @@ -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);
Expand Down