Skip to content

Commit a5b51a4

Browse files
Fix anagram.rs to be in line with clippy (#990)
``` Checking anagram v0.0.0 (/home/rmason/code/exercism/rust/anagram) warning: this import is redundant --> tests/anagram.rs:1:1 | 1 | use anagram; | ^^^^^^^^^^^^ help: remove it entirely | = note: `#[warn(clippy::single_component_path_imports)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports warning: 1 warning emitted Finished dev [unoptimized + debuginfo] target(s) in 0.41s ```
1 parent c6751d3 commit a5b51a4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

exercises/anagram/tests/anagram.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
use anagram;
2-
31
use std::collections::HashSet;
42
use std::iter::FromIterator;
53

0 commit comments

Comments
 (0)