diff --git a/X10D/src/TimeSpanParser.cs b/X10D/src/TimeSpanParser.cs index e327442..464543c 100644 --- a/X10D/src/TimeSpanParser.cs +++ b/X10D/src/TimeSpanParser.cs @@ -10,12 +10,12 @@ namespace X10D public static class TimeSpanParser { /// - /// Parses a shorthand time span string (e.g. 3w 2d 1.5h) and converts it to an instance of - /// . + /// Parses a shorthand time span string (e.g. 3w 2d 1.5h) and converts it to an instance of + /// which represents that duration of time. /// /// The input string. /// The format provider. - /// Returns an instance of . + /// An instance of constructed from the parsed . public static TimeSpan Parse(string input, IFormatProvider? provider = null) { const string realNumberPattern = @"([0-9]*\.[0-9]+|[0-9]+)";