Skip to content

Commit

Permalink
chore: fix typo (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
weykon authored Jan 2, 2023
1 parent 7c27d6c commit 75c08fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl Search {
// Will return the file name with extension.
let file_name = file_name.to_string_lossy().to_string();
if reg_exp.is_match(&file_name) {
// Contunue searching if the send was successful
// Continue searching if the send was successful
// and there is no limit or the limit has not been reached
if tx.send(path.display().to_string()).is_ok()
&& (limit.is_none() || counter < limit.unwrap())
Expand Down

0 comments on commit 75c08fb

Please sign in to comment.