Just to call out you can also do this:
defmodule Thing do
@doc ""
An explanation
""" && false
def semi_public(thing) do
end
end
which will still exclude the doc from hexdocs but lets you write a doc still.
Just to call out you can also do this:
defmodule Thing do
@doc ""
An explanation
""" && false
def semi_public(thing) do
end
end
which will still exclude the doc from hexdocs but lets you write a doc still.