Closed
Description
Given the following code:
/**
* @class Test
*/
class Test extends React.Component {
static propTypes = /** @lends Test.prototype */ {
/**
* Docs OK!
*/
OK: true,
/**
* Does not doc OK
*/
'not-ok': false,
}
}
OK
is correctly a member of Test
, however, 'not-ok'
is not. Adding an explicit @memberof
to the doc block for 'not-ok'
will cause it to end up in the right place.
- What version of documentation.js are you using?: 4.0.0-rc.1
- How are you running documentation.js (on the CLI, Node.js API, Grunt, other?): CLI (or Node.js API)