Skip to content

Commit 75b4d22

Browse files
author
slavara
committed
FIx typo...
1 parent 33c41cc commit 75b4d22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PostfixCodeCompletion/Settings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public bool DisableTypeDeclaration
3434
[Editor(typeof(ArrayEditor), typeof(UITypeEditor))]
3535
public LanguageFeatures[] LanguageFeatures { get; set; } = {
3636
new LanguageFeatures {Language = "as3", Numeric = new[] {"int", "uint"}},
37-
new LanguageFeatures {Language = "haxe", Numeric = new [] {"Int", "Uint"}}
37+
new LanguageFeatures {Language = "haxe", Numeric = new[] {"Int", "UInt"}}
3838
};
3939
}
4040

@@ -43,9 +43,9 @@ public bool DisableTypeDeclaration
4343
internal class LanguageFeatures
4444
{
4545
[DisplayName("Language name")]
46-
public string Language { get; set; }
46+
public string Language { get; set; } = string.Empty;
4747

4848
[DisplayName("Numeric types")]
49-
public string[] Numeric { get; set; }
49+
public string[] Numeric { get; set; } = {};
5050
}
5151
}

0 commit comments

Comments
 (0)