Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update cspell for abi demonomorphizer #6258

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@
"defi",
"delegatecall",
"delegatecalls",
"demonomorphization",
"demonomorphize",
"demonomorphized",
"demonomorphizer",
"demonomorphizes",
"demonomorphizing",
"deregistration",
"devex",
"devnet",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class Demonomorphizer {
}

/**
* Demononomorphizes a struct, by demonomorphizing its dependencies first.
* Demonomorphizes a struct, by demonomorphizing its dependencies first.
* Then it'll unify the types of the variants generating a unique generic type.
* It'll also generate args that instantiate the generic type with the concrete arguments for each variant.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class TypingsGenerator {
this.demonomorphizedAbis.push({ circuitName, params });
}
}
// Demononmorphize the types
// Demonomorphize the types
Demonomorphizer.demonomorphize(this.allTypes);
}

Expand Down
Loading