Don't document private methods
This commit is contained in:
parent
3b5c2617c5
commit
6271f81a60
|
@ -219,7 +219,9 @@ var APIDoc = React.createClass({
|
|||
renderMethods: function(methods) {
|
||||
return (
|
||||
<div className="props">
|
||||
{methods.map(this.renderMethod)}
|
||||
{methods.filter((method) => {
|
||||
return method.name[0] !== '_';
|
||||
}).map(this.renderMethod)}
|
||||
</div>
|
||||
);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue