From fa665d0f817d7446b290a16434411d6af0ad6f91 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Thu, 15 Nov 2012 21:20:50 +0100 Subject: typo fix --- source/text/sbasic/shared/03090101.xhp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/text/sbasic/shared/03090101.xhp b/source/text/sbasic/shared/03090101.xhp index 991409b81e..34b0680f96 100644 --- a/source/text/sbasic/shared/03090101.xhp +++ b/source/text/sbasic/shared/03090101.xhp @@ -50,7 +50,7 @@ If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf -Instead of Else If you can write ElseIf, instead of End If you can write EndIf. +Instead of Else If you can write ElseIf, instead of End If you can write EndIf. Parameters: The If...Then statement executes program blocks depending on given conditions. When $[officename] Basic encounters an If statement, the condition is tested. If the condition is True, all subsequent statements up to the next Else or ElseIf statement are executed. If the condition is False, and an ElseIf statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next ElseIf or Else statement. Statements following Else are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following EndIf. You can nest multiple If...Then statements. -- cgit v1.2.3