Hello,
Trying to write documentation according to Julia manual I've found
following reversed order of methods for given function; is that a bug?:
"""
foo()
I'm major foo...
"""
function foo()
end
"
foo(x)
Here comes additional doc...
"
function foo(x)
end
resulting documentation looks like:
help?> foo
foo(x)
Here comes additional doc...
foo()
I'm major foo...
