cs136 / seashell

Seashell is an online environment for editing, running, and submitting C programming assignments.
GNU General Public License v3.0
38 stars 19 forks source link

Add extra space before default comment text #666

Closed JeffreyCA closed 7 years ago

JeffreyCA commented 7 years ago

Adjust spacing for default comments for .c, .h, .rkt files created in Seashell.

Before (Racket): ;;Enter a description for this file. After (Racket): ;; Enter a description for this file.

Before (C):

/**
 File: a.c
Enter a description for this file.
*/

After (C):

/**
 File: a.c
 Enter a description for this file.
*/