@todo¶
-
.. @todo::
¶ - 语法
@todo
text describing thing to do.- 概述
The @todo tag allows you to document tasks to be completed for some part of your code. You can use the @todo tag more than once in a single JSDoc comment.
- 示例
- Using the @todo tag¶
/** * @todo Write the documentation. * @todo Implement this function. */ function foo() { // write me }