chore: Remove the misspelling

This commit is contained in:
BluJ
2023-02-13 12:51:09 -07:00
parent 8b15a7c17d
commit 9430d1ceb2

View File

@@ -20,7 +20,7 @@ export class Variants<A extends { [key: string]: ConfigSpec }> extends IBuilder<
static empty() {
return Variants.of({});
}
static withVariannt<K extends string, B extends ConfigSpec>(key: K, value: Config<B>) {
static withVariant<K extends string, B extends ConfigSpec>(key: K, value: Config<B>) {
return Variants.empty().withVariant(key, value);
}