]> Kevux Git Server - fll/commit
Cleanup: Remove () from while comment
authorKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:08:14 +0000 (17:08 -0500)
committerKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:08:14 +0000 (17:08 -0500)
commita6cb9f8accbed04c936f7fe4ac031445de9112f3
tree6d5919bbb9bf375bbc90b90e66b9fa036bfc0c1b
parentf4103a90318455c69baa93a4bd2bbfed1d4d6a85
Cleanup: Remove () from while comment

The end of a while loop comment will no longer have open close parenthesis.

Thus:
  while (f_true) {
    // ..
  } // while()

Now becomes:
  while (f_true) {
    // ..
  } // while
level_1/fl_console/c/console.c
level_1/fl_strings/c/strings.c