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
When a function has multiple signatures, the arguments and returns from all but the last signuature are ignored.
/** * Object#one() -> Object * Object#one(thing) -> String * - thing (Number): A number * * Here's the correct signature: * * Object#one() -> Object * Object#one(thing) -> String * - thing (Number): A number * * Here's how the signatures are understood: * * Object#one * Object#one(thing) -> String * - thing (Number): A number * **/
You can actually see this happening on the hosted example of Prototype: http://nodeca.github.io/ndoc/tests/prototype/#Element.addMethods
The text was updated successfully, but these errors were encountered:
Seems to be a bug. Try to roll back to v3 or v4. Probably something was broken on rewrite.
Support of this package is very limited now. Don't expect fix soon, sorry. Also, i'd suggest to look at something jsdoc-based.
Sorry, something went wrong.
No branches or pull requests
When a function has multiple signatures, the arguments and returns from all but the last signuature are ignored.
You can actually see this happening on the hosted example of Prototype:
http://nodeca.github.io/ndoc/tests/prototype/#Element.addMethods
The text was updated successfully, but these errors were encountered: