Skip to content

Commit

Permalink
remove erroneous words from spellchecker config
Browse files Browse the repository at this point in the history
  • Loading branch information
tjjfvi committed Feb 23, 2024
1 parent 6ba9d5c commit 30a8489
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"words": [
"anni",
"annihilations",
"appllication's",
"arities",
"arity",
"behaviour",
Expand Down Expand Up @@ -39,7 +38,6 @@
"linearizing",
"lnet",
"lnil",
"maximium",
"mult",
"namegen",
"nams",
Expand Down
2 changes: 1 addition & 1 deletion docs/automatic-vectorization-with-tagged-lambdas.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ We have seen in [Dups and Sups](dups-and-sups.md) that duplications and superpos
Tagged applications will only annihilate lambdas with the same tag.
```rs

// V appllication's tag
// V application's tag
#A(#A λx(body) arg)
// ^ lambda's tag
// The tag must go before the term.
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ enum Mode {
#[arg(short = 'm', long = "mem", help = "How much memory to allocate for the runtime", default_value = "1G", value_parser = mem_parser)]
max_mem: u64,

#[arg(short = 'r', long = "rwts", help = "Maximium amount of rewrites", value_parser = mem_parser)]
#[arg(short = 'r', long = "rwts", help = "Maximum amount of rewrites", value_parser = mem_parser)]
max_rwts: Option<u64>,

#[arg(short = 'd', help = "Debug mode (print each reduction step)")]
Expand Down

0 comments on commit 30a8489

Please sign in to comment.