We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1628a3b commit 42d0f20Copy full SHA for 42d0f20
utilities.cake
@@ -442,8 +442,8 @@ Task ("spell-check")
442
}
443
444
var dictionary = WeCantSpell.Hunspell.WordList.CreateFromFiles(@"externals/English (American).dic");
445
- var words = new[]
446
- {
+ string[] words =
+ [
447
"Xamarin",
448
"AndroidX",
449
"IdentifierCommon",
@@ -814,7 +814,8 @@ Task ("spell-check")
814
"LiteRT",
815
"Multiprocess",
816
"MultiProcess",
817
- };
+ "RecaptchaBase",
818
+ ];
819
820
var dictionary_custom = WeCantSpell.Hunspell.WordList.CreateFromWords(words);
821
0 commit comments