[Libreoffice-commits] core.git: librelogo/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Mon Nov 5 18:30:10 UTC 2018
librelogo/source/LibreLogo/LibreLogo.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 994cf675adac2e9afb48b49b38a36658b3115204
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Nov 5 16:58:15 2018 +0100
Commit: Bartosz Kosiorek <gang65 at poczta.onet.pl>
CommitDate: Mon Nov 5 19:29:09 2018 +0100
Fix typo
Change-Id: I9508839d67e5723db5f9155560fdaef333a689f8
Reviewed-on: https://gerrit.libreoffice.org/62911
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek <gang65 at poczta.onet.pl>
diff --git a/librelogo/source/LibreLogo/LibreLogo.py b/librelogo/source/LibreLogo/LibreLogo.py
index 53f62a32f199..93c51d636312 100644
--- a/librelogo/source/LibreLogo/LibreLogo.py
+++ b/librelogo/source/LibreLogo/LibreLogo.py
@@ -1782,7 +1782,7 @@ def __l2p__(i, par, insub, inarray):
atom = i[pos:par["atom"][pos]]
par["out"] += atom
par["pos"] += len(atom)
- # handle subroutines with explicite parentheses
+ # handle subroutines with explicit parentheses
# and array indices
if i[par["pos"]:par["pos"]+1] in "([":
first = True
@@ -1925,7 +1925,7 @@ def __compil__(s):
# tokens: {startpos: endpos} dictionaries for subroutine names, operators and other tokens
# sub: subroutine tokens = positions of Logo subroutine names
- # (without explicite parentheses, for example: "f x" or "f (x*2)", but not "f(x)")
+ # (without explicit parentheses, for example: "f x" or "f (x*2)", but not "f(x)")
sub = {key: value for (key, value) in [j.span() for j in list(subroutines.finditer(i))]}
if sub != {}:
# op: operator tokens
More information about the Libreoffice-commits
mailing list