We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce:
write a method with the following signature:
def my_method(*args, option: false)
document it using YARD:
# @param args [Array] classic vintage args # @param kwargs [Boolean] :option (false) a new fangled kwarg
run yardoc on the file with my_method
yardoc
my_method
open the YARD documentation for my_method
Expected result:
- (Object) my_method(*args, option: false)
Actual result:
- (Object) my_method(option: false, *args)
Notes:
Keyword arguments correctly follow named args, but always precede the *args array.
*args
The text was updated successfully, but these errors were encountered:
Should be resolved by #785.
Sorry, something went wrong.
@lsegal I can confirm pointing at master works. Any idea when the next release will be?
master
No branches or pull requests
Steps to reproduce:
write a method with the following signature:
document it using YARD:
run
yardoc
on the file withmy_method
open the YARD documentation for
my_method
Expected result:
Actual result:
Notes:
Keyword arguments correctly follow named args, but always precede the
*args
array.The text was updated successfully, but these errors were encountered: