2012-01-06 29 views
0

我怎麼能這個評論正確使用jsdoc。有任何想法嗎???我如何才能使這個意見與jsdoc

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

回答

1

變量前右只需添加一個文檔註釋:

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