You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/HdrHistogram/IntHistogram.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ namespace HdrHistogram
23
23
/// 36,000,000,000 while maintaining a value precision of 3 significant digits across that range.
24
24
/// Value quantization within the range will thus be no larger than 1/1,000th (or 0.1%) of any value.
25
25
/// This example Histogram could be used to track and analyze the counts of observed response times ranging between
26
-
/// 1 tick (100 nanoseconds) and 1 hour in magnitude, while maintaining a value resolution of 100 nanosecond up to
26
+
/// 100 nanoseconds and 1 hour in magnitude, while maintaining a value resolution of 100 nanosecond up to
27
27
/// 100 microseconds, a resolution of 1 millisecond(or better) up to one second, and a resolution of 1 second
28
28
/// (or better) up to 1,000 seconds.
29
29
/// At it's maximum tracked value(1 hour), it would still maintain a resolution of 3.6 seconds (or better).
@@ -52,7 +52,7 @@ public IntHistogram(long highestTrackableValue, int numberOfSignificantValueDigi
52
52
/// <summary>
53
53
/// Construct a <see cref="IntHistogram"/> given the lowest and highest values to be tracked and a number of significant decimal digits.
54
54
/// Providing a <paramref name="lowestTrackableValue"/> is useful is situations where the units used for the histogram's values are much smaller that the minimal accuracy required.
55
-
/// For example when tracking time values stated in ticks (100 nanosecond units), where the minimal accuracy required is a microsecond, the proper value for <paramref name="lowestTrackableValue"/> would be 10.
55
+
/// For example when tracking time values stated in nanoseconds, where the minimal accuracy required is a microsecond, the proper value for <paramref name="lowestTrackableValue"/> would be 1000.
56
56
/// </summary>
57
57
/// <param name="lowestTrackableValue">
58
58
/// The lowest value that can be tracked (distinguished from 0) by the histogram.
Copy file name to clipboardExpand all lines: src/HdrHistogram/LongHistogram.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ namespace HdrHistogram
23
23
/// 36,000,000,000 while maintaining a value precision of 3 significant digits across that range.
24
24
/// Value quantization within the range will thus be no larger than 1/1,000th (or 0.1%) of any value.
25
25
/// This example Histogram could be used to track and analyze the counts of observed response times ranging between
26
-
/// 1 tick (100 nanoseconds) and 1 hour in magnitude, while maintaining a value resolution of 100 nanosecond up to
26
+
/// 100 nanoseconds and 1 hour in magnitude, while maintaining a value resolution of 100 nanosecond up to
27
27
/// 100 microseconds, a resolution of 1 millisecond(or better) up to one second, and a resolution of 1 second
28
28
/// (or better) up to 1,000 seconds.
29
29
/// At it's maximum tracked value(1 hour), it would still maintain a resolution of 3.6 seconds (or better).
@@ -51,7 +51,7 @@ public LongHistogram(long highestTrackableValue, int numberOfSignificantValueDig
51
51
/// <summary>
52
52
/// Construct a <see cref="LongHistogram"/> given the lowest and highest values to be tracked and a number of significant decimal digits.
53
53
/// Providing a <paramref name="lowestTrackableValue"/> is useful is situations where the units used for the histogram's values are much smaller that the minimal accuracy required.
54
-
/// For example when tracking time values stated in tick (100 nanosecond units), where the minimal accuracy required is a microsecond, the proper value for <paramref name="lowestTrackableValue"/> would be 10.
54
+
/// For example when tracking time values stated in nanosecond units, where the minimal accuracy required is a microsecond, the proper value for <paramref name="lowestTrackableValue"/> would be 1000.
55
55
/// </summary>
56
56
/// <param name="lowestTrackableValue">
57
57
/// The lowest value that can be tracked (distinguished from 0) by the histogram.
Copy file name to clipboardExpand all lines: src/HdrHistogram/ShortHistogram.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ namespace HdrHistogram
24
24
/// 36,000,000,000 while maintaining a value precision of 3 significant digits across that range.
25
25
/// Value quantization within the range will thus be no larger than 1/1,000th (or 0.1%) of any value.
26
26
/// This example Histogram could be used to track and analyze the counts of observed response times ranging between
27
-
/// 1 tick (100 nanoseconds) and 1 hour in magnitude, while maintaining a value resolution of 100 nanosecond up to
27
+
/// 100 nanoseconds and 1 hour in magnitude, while maintaining a value resolution of 100 nanosecond up to
28
28
/// 100 microseconds, a resolution of 1 millisecond(or better) up to one second, and a resolution of 1 second
29
29
/// (or better) up to 1,000 seconds.
30
30
/// At it's maximum tracked value(1 hour), it would still maintain a resolution of 3.6 seconds (or better).
@@ -53,7 +53,7 @@ public ShortHistogram(long highestTrackableValue, int numberOfSignificantValueDi
53
53
/// <summary>
54
54
/// Construct a <see cref="ShortHistogram"/> given the lowest and highest values to be tracked and a number of significant decimal digits.
55
55
/// Providing a <paramref name="lowestTrackableValue"/> is useful is situations where the units used for the histogram's values are much smaller that the minimal accuracy required.
56
-
/// For example when tracking time values stated in ticks (100 nanosecond units), where the minimal accuracy required is a microsecond, the proper value for <paramref name="lowestTrackableValue"/> would be 10.
56
+
/// For example when tracking time values stated in nanoseconds, where the minimal accuracy required is a microsecond, the proper value for <paramref name="lowestTrackableValue"/> would be 1000.
57
57
/// </summary>
58
58
/// <param name="lowestTrackableValue">
59
59
/// The lowest value that can be tracked (distinguished from 0) by the histogram.
0 commit comments