Skip to content

Commit

Permalink
Make indentations consistent with the rest of the entries in primitive.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmboggs committed Jul 26, 2020
1 parent 2e0c7f9 commit a74e20b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Boo.Lang.CodeDom/BooCodeGenerator.boo
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ class BooCodeGenerator(CodeGenerator):
"System.Int64" : "long",
"System.Int16" : "short",
"System.UInt16" : "ushort",
"System.UInt32" : "uint",
"System.Uint64" : "ulong",
"System.Byte": "byte",
"System.Sbyte": "sbyte",
"System.Decimal": "decimal",
"System.UInt32" : "uint",
"System.Uint64" : "ulong",
"System.Byte": "byte",
"System.Sbyte": "sbyte",
"System.Decimal": "decimal",
"System.Boolean" : "bool",
"System.Char" : "char",
"System.String" : "string",
Expand Down

0 comments on commit a74e20b

Please sign in to comment.