Skip to content
Merged
Prev Previous commit
Next Next commit
drop the parens
  • Loading branch information
RobinMalfait committed Apr 3, 2025
commit 223b24676313d4bbb59f747b1eaaee7ab226f48c
2 changes: 1 addition & 1 deletion crates/oxide/src/scanner/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ impl Scanner {
match source {
SourceEntry::Auto { base } | SourceEntry::External { base } => {
globs.extend(resolve_globs(
(base).to_path_buf(),
base.to_path_buf(),
&self.dirs,
&self.extensions,
));
Expand Down