JSDoc @todo 标签
目录
语法
@todo text describing thing to do.
概述
@todo
标签可以让你记录要完成的任务。在一个JSDoc注释块中您可以包含多个@todo
标签。
示例
/**
* @todo Write the documentation.
* @todo Implement this function.
*/
function foo() {
// write me
}
@todo text describing thing to do.
@todo
标签可以让你记录要完成的任务。在一个JSDoc注释块中您可以包含多个@todo
标签。
/**
* @todo Write the documentation.
* @todo Implement this function.
*/
function foo() {
// write me
}