Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Multi-Line Comments Ending With */ On the Same Line as Text #16

Open
mliberatore opened this issue Dec 10, 2014 · 0 comments
Open

Comments

@mliberatore
Copy link

Comments in the format:

/* 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 /*.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants