Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit f50f38b

Browse files
alfredmyersbrianrob
authored andcommitted
Fixed a couple of comments on TimeSpan.SecondsPerTick and Thread.SleepInternal (#18276)
* Fixed comment for TimeSpan.SecondsPerTick * Fixed comment on Thread.SleepInternal Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com>
1 parent 5677de5 commit f50f38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/src/CoreLib/System/TimeSpan.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public struct TimeSpan : IComparable, IComparable<TimeSpan>, IEquatable<TimeSpan
3434
private const double MillisecondsPerTick = 1.0 / TicksPerMillisecond;
3535

3636
public const long TicksPerSecond = TicksPerMillisecond * 1000; // 10,000,000
37-
private const double SecondsPerTick = 1.0 / TicksPerSecond; // 0.0001
37+
private const double SecondsPerTick = 1.0 / TicksPerSecond; // 0.0000001
3838

3939
public const long TicksPerMinute = TicksPerSecond * 60; // 600,000,000
4040
private const double MinutesPerTick = 1.0 / TicksPerMinute; // 1.6666666666667e-9

0 commit comments

Comments
 (0)