From 02fc8c76dca81000971f91d442cfabb3dea7fda6 Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" <> Date: Tue, 16 Oct 2001 02:12:46 +0000 Subject: 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. --- docs/sgml/patches.sgml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/sgml/patches.sgml') diff --git a/docs/sgml/patches.sgml b/docs/sgml/patches.sgml index 3f49255f2..f5a9ebdfa 100644 --- a/docs/sgml/patches.sgml +++ b/docs/sgml/patches.sgml @@ -296,7 +296,8 @@ to reformat the entire file :). if ($var) { print "The variable is true"; - } else { + } + else { print "Try again"; } -- cgit v1.2.3-24-g4f1b