summaryrefslogtreecommitdiff
path: root/source/text/sbasic/shared/03090203.xhp
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@libreoffice.org>2017-12-12 16:59:01 -0200
committerOlivier Hallot <olivier.hallot@libreoffice.org>2017-12-12 20:02:25 +0100
commitb8ee7a5bf9fba95a2bda283008a5bef5eff4131e (patch)
tree7ee724ae5e4e814ecc75fb794a221a1c3ed58007 /source/text/sbasic/shared/03090203.xhp
parent769876a87a8ebbdfa80a0bfa9bab11fcbf56a83c (diff)
Fix Help pages typos.
Change-Id: I425e6ddc86c997b6e00b8e80c193ee6a7b6df4d3 Reviewed-on: https://gerrit.libreoffice.org/46335 Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org> Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'source/text/sbasic/shared/03090203.xhp')
-rw-r--r--source/text/sbasic/shared/03090203.xhp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/text/sbasic/shared/03090203.xhp b/source/text/sbasic/shared/03090203.xhp
index fb28324147..41fed6d2d6 100644
--- a/source/text/sbasic/shared/03090203.xhp
+++ b/source/text/sbasic/shared/03090203.xhp
@@ -21,7 +21,7 @@
<helpdocument version="1.0">
<meta>
<topic id="textsbasicshared03090203xml" indexer="include" status="PUBLISH">
-<title xml-lang="en-US" id="tit">While...Wend Statement[Runtime]</title>
+<title xml-lang="en-US" id="tit">While...Wend Statement [Runtime]</title>
<filename>/text/sbasic/shared/03090203.xhp</filename>
</topic>
<history>
@@ -31,7 +31,7 @@
<body>
<section id="whilewend">
- <bookmark xml-lang="en-US" branch="index" id="bm_id3150400"><bookmark_value>While;While...Wend loop</bookmark_value></bookmark><paragraph id="hd_id3150400" role="heading" level="1" xml-lang="en-US"><link href="text/sbasic/shared/03090203.xhp" name="While...Wend Statement[Runtime]">While...Wend Statement[Runtime]</link></paragraph>
+ <bookmark xml-lang="en-US" branch="index" id="bm_id3150400"><bookmark_value>While;While...Wend loop</bookmark_value></bookmark><paragraph id="hd_id3150400" role="heading" level="1" xml-lang="en-US"><link href="text/sbasic/shared/03090203.xhp" name="While...Wend Statement [Runtime]">While...Wend Statement [Runtime]</link></paragraph>
<paragraph xml-lang="en-US" role="paragraph" id="par_id3151211">When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again.</paragraph>
</section>
<paragraph xml-lang="en-US" id="par_id3151041" role="paragraph">Unlike the <link href="text/sbasic/shared/03090201.xhp" name="Do...Loop">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href="text/sbasic/shared/03090412.xhp" name="Exit">Exit</link>. Never exit a While...Wend loop with <link href="text/sbasic/shared/03090302.xhp" name="GoTo">GoTo</link>, since this can cause a run-time error.</paragraph>