summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2012-11-15 21:20:50 +0100
committerAndras Timar <atimar@suse.com>2012-11-15 21:20:50 +0100
commitfa665d0f817d7446b290a16434411d6af0ad6f91 (patch)
treecabc98bab0f4e217b0931eb52c2e082a77011e93 /source
parentff39701b0e841035089929ab7811c7431ab9b39b (diff)
typo fix
Diffstat (limited to 'source')
-rw-r--r--source/text/sbasic/shared/03090101.xhp2
1 files changed, 1 insertions, 1 deletions
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 @@
<bascode>
<paragraph role="bascode" id="par_id3153126" xml-lang="en-US" oldref="4">If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf</paragraph>
</bascode>
-<paragraph role="paragraph" id_par_id3123476" xml-lang="en-US">Instead of Else If you can write ElseIf, instead of End If you can write EndIf.</paragraph>
+<paragraph role="paragraph" id="par_id3123476" xml-lang="en-US">Instead of Else If you can write ElseIf, instead of End If you can write EndIf.</paragraph>
<paragraph role="heading" id="hd_id3155419" xml-lang="en-US" level="2" l10n="U" oldref="5">Parameters:</paragraph>
<paragraph role="paragraph" id="par_id3153062" xml-lang="en-US" l10n="U" oldref="6">The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> 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 <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> 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 <emph>EndIf</emph>.</paragraph>
<paragraph role="paragraph" id="par_id3153192" xml-lang="en-US" l10n="U" oldref="7">You can nest multiple <emph>If...Then</emph> statements.</paragraph>