Add constructor error in order kwargs, add kwarg to cspell

This commit is contained in:
imaqtkatt 2024-05-12 20:22:38 -03:00
parent 7c403e9ddf
commit 461305ef35
2 changed files with 4 additions and 10 deletions

View File

@ -43,6 +43,7 @@
"interner",
"itertools",
"ITRS",
"kwarg",
"kwargs",
"lcons",
"linearization",
@ -99,13 +100,6 @@
"walkdir",
"wopts"
],
"files": [
"**/*.rs",
"**/*.md"
],
"ignoreRegExpList": [
"HexValues",
"/λ/g",
"/-O/g"
]
"files": ["**/*.rs", "**/*.md"],
"ignoreRegExpList": ["HexValues", "/λ/g", "/-O/g"]
}

View File

@ -123,7 +123,7 @@ impl Expr {
arg.order_kwargs(book)?;
}
}
_ => {}
_ => return Err(format!("Constructor '{name}' not found.")),
},
Expr::MapInit { entries } => {
for entry in entries {