JS1016: Unterminated comment

A multi-line comment block is not properly terminated. Multi-line comments must begin with a "/*" combination and end with the reverse "*/" combination.

Following is an example of correct multi-line comment usage:

/* This is a comment
This is another part of the same comment.*/

To correct this error

  • Be sure to terminate multi-line comments with "*/".

See Also

Reference

Comment Statements