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
Add basic validation for method's parameters. If they're invalid then don't document either entire method or only skip its parameters.
Bad params examples:
def foo(bar, baz qux) end
def foo ; end
The text was updated successfully, but these errors were encountered:
Also fix param name in this case, it should parse as other, not |other.
other
|other
# # <Description> # # @param [<Type>] |other <description> # # @return [<Type>] <description> # def |(other) end
Sorry, something went wrong.
No branches or pull requests
Add basic validation for method's parameters. If they're invalid then don't document either entire method or only skip its parameters.
Bad params examples:
The text was updated successfully, but these errors were encountered: