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 f29c6af commit d4609c6Copy full SHA for d4609c6
lib/elixir/lib/path.ex
@@ -471,12 +471,12 @@ defmodule Path do
471
472
"""
473
def wildcard(glob) when is_binary(glob) do
474
- paths = :elixir_glob.wildcard :unicode.characters_to_list(glob)
+ paths = :filelib.wildcard :unicode.characters_to_list(glob)
475
Enum.map paths, :unicode.characters_to_binary(&1)
476
end
477
478
def wildcard(glob) when is_list(glob) do
479
- :elixir_glob.wildcard glob
+ :filelib.wildcard glob
480
481
482
## Helpers
lib/elixir/src/elixir_glob.erl
0 commit comments