Adjust cspell

This commit is contained in:
imaqtkatt 2024-05-03 13:33:25 -03:00
parent e13e360118
commit 273733a84f
2 changed files with 5 additions and 10 deletions

View File

@ -40,6 +40,7 @@
"insta", "insta",
"interner", "interner",
"itertools", "itertools",
"kwargs",
"lcons", "lcons",
"linearization", "linearization",
"linearizes", "linearizes",
@ -59,6 +60,7 @@
"oref", "oref",
"peekable", "peekable",
"postcondition", "postcondition",
"prec",
"readback", "readback",
"recursively", "recursively",
"redex", "redex",
@ -91,13 +93,6 @@
"walkdir", "walkdir",
"wopts" "wopts"
], ],
"files": [ "files": ["**/*.rs", "**/*.md"],
"**/*.rs", "ignoreRegExpList": ["HexValues", "/λ/g", "/-O/g"]
"**/*.md"
],
"ignoreRegExpList": [
"HexValues",
"/λ/g",
"/-O/g"
]
} }

View File

@ -587,7 +587,7 @@ def inc_list(list):
def lam(): def lam():
return lambda x, y: return x;; return lambda x, y: return x;;
def mtch(b): def do_match(b):
match b as bool: match b as bool:
case True: case True:
return 1; return 1;