Commit 02fc8c76 authored by jake%acutex.net's avatar jake%acutex.net

The recommended style for perl (which is the styleguide Bugzilla will use)…

The recommended style for perl (which is the styleguide Bugzilla will use) specifies that else should not be cuddled. This guide, while not specifically saying it, elluded to cuddling else. Fixing that problem.
parent efd3bd5d
......@@ -296,7 +296,8 @@ to reformat the entire file :).
if ($var) {
print "The variable is true";
} else {
}
else {
print "Try again";
}
......
......@@ -296,7 +296,8 @@ to reformat the entire file :).
if ($var) {
print "The variable is true";
} else {
}
else {
print "Try again";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment