Skip to content

Commit dc27a34

Browse files
fembinaCopilot
andauthored
refactor commits
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 4615eec commit dc27a34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/Falko.Talkie.Bridges.Telegram/Serialization/TextOrNumberValueDictionaryConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ JsonSerializerOptions options
4343

4444
var value = reader.TokenType switch
4545
{
46-
// We don't check for null here, because it's will be checked in the constructor
46+
// We don't check for null here, because it will be checked in the constructor
4747
JsonTokenType.String => new TextOrNumberValue(reader.GetString()!),
4848
JsonTokenType.Number => new TextOrNumberValue(reader.GetInt64()),
4949
_ => throw new JsonException($"Unexpected value type for property '{key}', expected string or number.")

0 commit comments

Comments
 (0)