Skip to content

Commit 1028b66

Browse files
authored
Apply suggestion from @niemyjski
1 parent cf7ccfa commit 1028b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exceptionless.DateTimeExtensions/TimeUnit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static bool TryParse(string value, out TimeSpan? time)
2828

2929
private static TimeSpan? ParseTime(string value)
3030
{
31-
if (String.IsNullOrWhitespace(value))
31+
if (String.IsNullOrWhiteSpace(value))
3232
return null;
3333

3434
string normalized = value.Trim();

0 commit comments

Comments
 (0)