-
Notifications
You must be signed in to change notification settings - Fork 32
Condense $FIELDS template #136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
7d49e9c
to
c4c7b2f
Compare
c4c7b2f
to
ae3e3ae
Compare
Thanks, LGTM, looks like we've got some windows test failures. |
It looks like the failure is unrelated to the PR. The failed test is for the methods signature formatting. It seems on windows |
Ah, I see that the windows ordering inconsistence is fixed in the recent Julia versions. I've tried to update the tests to make them pass. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I'll tag a patch release once this is merged in.
Thank you! It looks like v1.8 also behaves differently on Windows, but this time WRT to default function arguments. I will not try to fix this one. |
fixes the bug introduced by JuliaDocs#136
fixes the bug introduced by JuliaDocs#136
For
$FIELDS
/$TYPEDFIELDS
templates, put the field description on the same line as the field name.Example:
x::String
y::Int
: Unlike thex
field this field has been documented.z::Array{Any, 1}
: Another documented field.Fixes #63