You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 30, 2020. It is now read-only.
I'm somewhat new to JSDoc stuff but from what I understand, I should be able to add
/**
* @private
*/
above a function definition and it should not be shown in the generated docs, however adding this seems to have no effect, the function is still documented.
Example:
/**
* @ngdoc controller
* @name app.TestController
* @description
* A controller
*/
function TestController() {
/**
* @private
*/
function _init_() {
return test;
}
}