2012-01-06 7 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; 
関連する問題