You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Here's a comment. And here's a second line of the comment. */
...are currently being corrected to:
/* Here's a comment. * And here's a second line of the comment. */
...which is a convention/style that no developers would really follow.
I'd like to suggest that, for the sake of consistency with the preferred documentation comment style, and in addition to #15, the trailing */ should be moved to the next line, resulting in the following:
/* * Here's a comment. * And here's the second line of the comment.*/
...or:
/* Here's a comment. * And here's the second line of the comment.*/
... if #15 is not applied to comments that begin with /*.
The text was updated successfully, but these errors were encountered:
Comments in the format:
...are currently being corrected to:
...which is a convention/style that no developers would really follow.
I'd like to suggest that, for the sake of consistency with the preferred documentation comment style, and in addition to #15, the trailing
*/
should be moved to the next line, resulting in the following:...or:
... if #15 is not applied to comments that begin with
/*
.The text was updated successfully, but these errors were encountered: