Skip to content

Commit

Permalink
Replace Dict.merge w/Map.merge
Browse files Browse the repository at this point in the history
  • Loading branch information
radiospiel committed Oct 7, 2020
1 parent 7a08e5a commit b2ba8b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ex_minimatch.ex
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ defmodule ExMinimatch do
nocomment: false,
nobrace: false,
log: nil
} |> Dict.merge(options)
} |> Map.merge(options)

ExMinimatch.Compiler.compile_matcher(glob, options)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/ex_minimatch/compiler.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule ExMinimatch.Compiler do
import Dict, only: [merge: 2]
import Map, only: [merge: 2]
import ExBraceExpansion
import ExMinimatch.Helper

Expand Down

0 comments on commit b2ba8b6

Please sign in to comment.