Skip to content

Commit

Permalink
Update src/Tomlyn/Parsing/Lexer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed May 9, 2022
1 parent f888717 commit b07f388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tomlyn/Parsing/Lexer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ private void ReadNumberOrDate(char32? signPrefix = null, TextPosition? signPrefi
previousCharIsDigit = _c == '0';
if (previousCharIsDigit)
{
_textBuilder.Append(_c.ToString());
_textBuilder.Append((char)_c);
zeroDigit++;
}
end = _position;
Expand Down

0 comments on commit b07f388

Please sign in to comment.