Skip to content

Commit 5c4bc35

Browse files
committed
Fix timespan
1 parent caac623 commit 5c4bc35

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

TextTableBuilder/TextTableBuilder.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<PackageTags>text;table;simple</PackageTags>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>
1919
<PackageLicenseExpression>MIT</PackageLicenseExpression>
20-
<Version>1.0.3</Version>
21-
<PackageReleaseNotes>Fix type mixup for ulong/ushort/short.</PackageReleaseNotes>
20+
<Version>1.0.4</Version>
21+
<PackageReleaseNotes>Fix timespan</PackageReleaseNotes>
2222
</PropertyGroup>
2323

2424
<ItemGroup>

TextTableBuilder/TypeHandlers/TimeSpanHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public class TimeSpanHandler : SpecificFormatHandler
44
{
5-
public TimeSpanHandler(string format = "HH:mm:ss")
5+
public TimeSpanHandler(string format = @"hh\:mm\:ss")
66
: base(format) { }
77

88
public override string Handle(object value, IFormatProvider formatProvider)

0 commit comments

Comments
 (0)