Skip to content

Commit

Permalink
Ignore non-Elixir modules when missing chunk
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Aug 13, 2019
1 parent 24d9783 commit 81db137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ex_doc/retriever.ex
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ defmodule ExDoc.Retriever do
not Code.ensure_loaded?(module) ->
raise Error, "module #{inspect(module)} is not defined/available"

function_exported?(module, :__info__, 1) ->
not function_exported?(module, :__info__, 1) ->
# Not an Elixir module, ignore until we have Erlang support
false

Expand Down

0 comments on commit 81db137

Please sign in to comment.