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: ```ruby def foo(bar, baz qux) end ``` ```ruby def foo ; end ```
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: