From 273733a84f014be7fe34b408fc988ec727192f9c Mon Sep 17 00:00:00 2001 From: imaqtkatt Date: Fri, 3 May 2024 13:33:25 -0300 Subject: [PATCH] Adjust cspell --- cspell.json | 13 ++++--------- src/term/flavour_py/parser.rs | 2 +- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/cspell.json b/cspell.json index da2c45d2..ffd3a09c 100644 --- a/cspell.json +++ b/cspell.json @@ -40,6 +40,7 @@ "insta", "interner", "itertools", + "kwargs", "lcons", "linearization", "linearizes", @@ -59,6 +60,7 @@ "oref", "peekable", "postcondition", + "prec", "readback", "recursively", "redex", @@ -91,13 +93,6 @@ "walkdir", "wopts" ], - "files": [ - "**/*.rs", - "**/*.md" - ], - "ignoreRegExpList": [ - "HexValues", - "/λ/g", - "/-O/g" - ] + "files": ["**/*.rs", "**/*.md"], + "ignoreRegExpList": ["HexValues", "/λ/g", "/-O/g"] } diff --git a/src/term/flavour_py/parser.rs b/src/term/flavour_py/parser.rs index 90c357bf..beda8529 100644 --- a/src/term/flavour_py/parser.rs +++ b/src/term/flavour_py/parser.rs @@ -587,7 +587,7 @@ def inc_list(list): def lam(): return lambda x, y: return x;; -def mtch(b): +def do_match(b): match b as bool: case True: return 1;