In http://docs.julialang.org/en/latest/manual/documentation/#functions-methods
it would be worth emphasizing that the docstring of the second method isn't
followed by an arrow.
If I apply the same philosophy to constructors I only seem to get the
type's documentation:
$cat test_doc.jl
@doc doc"Some type." ->
type Something
x :: Float64;
end
@doc doc"Simple constructor." # No arrow!
Something() = Something(1.0);
julia> VERSION
v"0.4.0-dev+4559"
julia> include("test_doc.jl")
help?> Something
search: Something
Some type.
julia> @doc Something
Some type.
In 0.3, Docile lists all the possibilities. How do I access the
constructor's documentation?