Skip to content

Commit

Permalink
fix typepo
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz committed Dec 24, 2023
1 parent 1ebcb97 commit 4036f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
filter_ext(path, ext::AbstractString) =
filte(fn -> splitext(fn)[2] == ext, readdir(path; join=true))
filter(fn -> splitext(fn)[2] == ext, readdir(path; join=true))
filter_ext(path, exts::Union{Tuple,AbstractArray}) =
filter(fn -> splitext(fn)[2] in exts, readdir(path; join=true))
filter_ext(path, ext::Nothing) = readdir(path; join=true)
Expand Down

0 comments on commit 4036f8c

Please sign in to comment.