Code review comment for lp:~mardy/unity-2d/rtl

Revision history for this message
Florian Boucault (fboucault) wrote :

Style: by convention all if statements use braces. For example:

if (true)
  do this
else
  do that

is actually written:

if (true) {
  do this
} else {
  do that
}

See CODING file.

« Back to merge proposal