grub2-dev: Multi-Line Comments

1 
1 2.7 Multi-Line Comments
1 =======================
1 
1 Comments spanning multiple lines shall be formatted with all lines after
1 the first aligned with the first line.
1 
1    Asterisk characters should not be repeated a the start of each
1 subsequent line.
1 
1    Acceptable:
1      /* This is a comment
1         which spans multiple lines.
1         It is long.  */
1 
1    Unacceptable:
1      /*
1       * This is a comment
1       * which spans multiple lines.
1       * It is long. */
1 
1    The opening '/*' and closing '*/' should be placed together on a line
1 with text.
1