[Libreoffice-commits] help.git: source/text

Travis Stewart (via logerrit) logerrit at kemper.freedesktop.org
Tue Oct 6 07:33:33 UTC 2020


 source/text/swriter/librelogo/LibreLogo.xhp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5494e02b2527f27a8cfbbd0a4a125443f3851715
Author:     Travis Stewart <tstewart.writer at gmail.com>
AuthorDate: Tue Oct 6 08:18:26 2020 +0200
Commit:     Ilmari Lauhakangas <ilmari.lauhakangas at libreoffice.org>
CommitDate: Tue Oct 6 09:33:12 2020 +0200

    tdf#96446 Fix Librelogo code example
    
    Change-Id: Iedba4c02f92ed97731902441122731ed725a1813
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/103974
    Tested-by: Jenkins
    Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas at libreoffice.org>

diff --git a/source/text/swriter/librelogo/LibreLogo.xhp b/source/text/swriter/librelogo/LibreLogo.xhp
index e4b390769..bab1b0e0e 100644
--- a/source/text/swriter/librelogo/LibreLogo.xhp
+++ b/source/text/swriter/librelogo/LibreLogo.xhp
@@ -314,7 +314,7 @@
 <paragraph role="heading" level="3" xml-lang="en-US" id="hd_2460">SET</paragraph>
 <paragraph role="logocode" xml-lang="en-US" id="par_2470"> ; Convert list to Python set<br/> PRINT SET [4, 5, 6, 6] ; print {4, 5, 6}<br/> PRINT SET [4, 5, 6, 6] | SET [4, 1, 9] ; print {1, 4, 5, 6, 9}, union<br/> PRINT SET [4, 5, 6, 6] & SET [4, 1, 9] ; print {4}, intersection<br/> PRINT SET ([4, 5, 6, 6]) - SET [4, 1, 9] ; print {5, 6}, difference<br/> PRINT SET [4, 5, 6, 6] ^ SET [4, 1, 9] ; print {1, 5, 6, 9}, symmetric difference  <br/></paragraph>
 <paragraph role="heading" level="3" xml-lang="en-US" id="hd_2480">RANGE</paragraph>
-<paragraph role="logocode" xml-lang="en-US" id="par_2490"> ; Python-like list generation<br/> PRINT RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/>   FORWARD i<br/>   LEFT 90<br/> ]<br/></paragraph>
+<paragraph role="logocode" xml-lang="en-US" id="par_2490"> ; Python-like list generation<br/> PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]<br/> PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]<br/> <br/> FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]<br/>   FORWARD i<br/>   LEFT 90<br/> ]<br/></paragraph>
 <paragraph role="heading" level="3" xml-lang="en-US" id="hd_2500">LIST</paragraph>
 <paragraph role="logocode" xml-lang="en-US" id="par_2510"> ; remove the repeating elements of a list using set and list conversion<br/> PRINT LIST (SET [1, 3, 5, 5, 2, 1]) ; print [1, 3, 5, 2]<br/></paragraph>
 <paragraph role="heading" level="3" xml-lang="en-US" id="hd_2520">TUPLE</paragraph>


More information about the Libreoffice-commits mailing list