Adjust cspell

This commit is contained in:
imaqtkatt 2024-05-21 11:43:21 -03:00
parent c7ba4b1ce7
commit c8c54f911c
2 changed files with 8 additions and 5 deletions

View File

@ -7,6 +7,7 @@
"argn",
"arities",
"arity",
"arrayvec",
"behaviour",
"bitand",
"Bitonic",
@ -36,6 +37,7 @@
"hexdigit",
"hvm's",
"hvmc",
"iexp",
"indexmap",
"inet",
"inets",
@ -57,10 +59,13 @@
"lnet",
"lnil",
"lpthread",
"mant",
"mult",
"namegen",
"nams",
"nats",
"newtype",
"nilary",
"nullary",
"numop",
"nums",
@ -84,6 +89,7 @@
"resugar",
"resugared",
"resugaring",
"repr",
"rfold",
"rsplit",
"rwts",
@ -112,10 +118,7 @@
"walkdir",
"wopts"
],
"files": [
"**/*.rs",
"**/*.md"
],
"files": ["**/*.rs", "**/*.md"],
"ignoreRegExpList": [
"HexValues",
"/λ/g",

View File

@ -22,7 +22,7 @@ use super::util::{array_vec, deref};
/// The top level AST node, representing a collection of named nets.
///
/// This is a newtype wrapper around a `BTreeMap<String, Net>`, and is
/// dereferencable to such.
/// dereferenceable to such.
#[derive(Clone, Hash, PartialEq, Eq, Debug, Default)]
pub struct Book {
pub nets: BTreeMap<String, Net>,