From: William Cohen Date: Mon, 15 Dec 2008 19:34:14 +0000 (-0500) Subject: Clarify optional else clause. X-Git-Tag: release-0.9~157^2~6 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=1179271f9a422edf543178d2d02d2bf38334e697;p=systemtap.git Clarify optional else clause. --- diff --git a/doc/SystemTap_Beginners_Guide/en-US/ScriptConstructs.xml b/doc/SystemTap_Beginners_Guide/en-US/ScriptConstructs.xml index 2550efce4..89334eff4 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/ScriptConstructs.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/ScriptConstructs.xml @@ -177,7 +177,8 @@ The statement1 is executed if the condition expression is non-zero. The statement2 is executed if the condition -expression is zero. The else is optional. Both +expression is zero. The else clause +(else statement2)is optional. Both statement1 and statement2 can be statement blocks.