Skip to content

Commit 6e6d13a

Browse files
committed
Fix nits
1 parent 75eddf9 commit 6e6d13a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

glob/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The globbing engine used by [`ec4rs`](https://github.com/TheDaemoness/ec4rs).
44
Please refer to that project for licensing and contribution info.
55

66
You're probably better-served by using the
7-
[`glob` crate](https://crates.io/crates/glob),
7+
[`glob` crate](https://crates.io/crates/glob)
88
or the [`globset` crate](https://crates.io/crates/globset),
99
both of which are widely-used and have good maintenance status at the time of
1010
writing. The only reason to use this crate is if you need:

glob/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ mod stack;
1616
#[cfg(test)]
1717
mod tests;
1818

19-
use matcher::Matcher;
2019
use flatset::FlatSet;
20+
use matcher::Matcher;
2121
use splitter::Splitter;
2222

2323
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Debug)]

src/properties.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ pub trait PropertiesSource {
275275
) -> Result<(), crate::Error>;
276276
}
277277

278-
impl<'a> PropertiesSource for &'a Properties {
278+
impl PropertiesSource for &Properties {
279279
fn apply_to(
280280
self,
281281
props: &mut Properties,

0 commit comments

Comments
 (0)