Jorge
Jorge

Reputation: 18237

How can i make this comments with jsdoc

how can i made this comment's properly using jsdoc. Any ideas???

   /**********************
* @variables : global variables
***************************/
var map; // this var handle the object related with the map
var image;
var currentMark;

Upvotes: 0

Views: 186

Answers (1)

Daff
Daff

Reputation: 44205

Just add a documentation comment right before the variable:

/** this var handle the object related with the map */
var map;
/** An image */
var image;
// Undocumented variables will not show up
var currentMark;

Upvotes: 1

Related Questions