Skip to content

Commit deccbe3

Browse files
author
Temo Nikolaishvili
committed
Parse method had invalid line break.
1 parent 7a463c3 commit deccbe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AltaSoft.DomainPrimitives.Generator/Helpers/MethodGeneratorHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public static void GenerateParsable(GeneratorData data, SourceCodeBuilder sb)
510510
}
511511
else
512512
{
513-
sb.AppendLine($"{underlyingType}.")
513+
sb.Append($"{underlyingType}.")
514514
.AppendLineIfElse(format is null, "Parse(s, provider);", $"ParseExact(s, \"{format}\", provider);");
515515
}
516516

0 commit comments

Comments
 (0)