We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c27d6c commit 75c08fbCopy full SHA for 75c08fb
src/search.rs
@@ -108,7 +108,7 @@ impl Search {
108
// Will return the file name with extension.
109
let file_name = file_name.to_string_lossy().to_string();
110
if reg_exp.is_match(&file_name) {
111
- // Contunue searching if the send was successful
+ // Continue searching if the send was successful
112
// and there is no limit or the limit has not been reached
113
if tx.send(path.display().to_string()).is_ok()
114
&& (limit.is_none() || counter < limit.unwrap())
0 commit comments