I'm editing a js file with JsDoc to get a clean documentation. My structure is quite simple:
/**
* Finds an object
* @param {string} prop - Property
*/
Array.prototype.findObject = function _findObj(prop, val){
// blablabla
}
function myfunc(plep){
// does something
}
/**
* Workshop Namespace
* @namespace
*/
var Workshop = {};
/**
* Does something great
* @param {*} plep - My super param!
*/
Workshop.doIt = myfunc;
/**
* It works!
* @param {string} fly - my flying param
*/
Workshop.flyNow = function _flyN (fly){
// fly!
}
However,
- Documentation for first function is not displayed.
- Workshop namespace IS created
- Workshop.doIt is documented only by its description, arguments are not
- Workshop.flyNow is well documented
Does anyone know why?
Thanks!

