简体   繁体   中英

In an Angular 6 project, what does @brief mean?

I have a new Angular 6 project and I noticed that there are some few hashed comments that seems like this:

/** @brief the displayed list of vehicles */

and this:

/** @brief dummy database of vehicles */

and this '@brief' thing has a blue color, so what is this '@brief' mean?

This is JSDoc documentation syntax in JavaScript comment blocks.

However, the @brief tag is not a standard tag and seems to be borrowed from doxygen .

The closest JSDoc tag would be the @summary tag meaning "a shorter version of the full description".

@brief Would help in documentation . Whatever code you write using @brief will be used to generate a document .You can use any tool for document generation .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM