Skip to content

Commit 25be289

Browse files
tarekghgewarren
andauthored
Apply suggestions from code review
Co-authored-by: Genevieve Warren <[email protected]>
1 parent 12f18b9 commit 25be289

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

xml/System.Diagnostics.Metrics/Meter.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ Example uses for Histogram: The request duration and the size of the response pa
766766
## Remarks
767767
768768
> [!NOTE]
769-
> Unlike Counter which takes the increment/delta value, the callback function reports the absolute value of the counter. To determine the reported rate the counter is changing, the difference between successive measurements is used.
769+
> Unlike `Counter`, which takes the increment/delta value, the callback function reports the absolute value of the counter. To determine the reported rate the counter is changing, the difference between successive measurements is used.
770770
771771
Example uses for ObservableCounter: The number of page faults for each process.
772772
@@ -1007,9 +1007,9 @@ Example uses for ObservableCounter: The number of page faults for each process.
10071007
## Remarks
10081008
10091009
> [!NOTE]
1010-
> Unlike Counter which takes the increment/delta value, the callback function reports the absolute value of the counter. To determine the reported rate the counter is changing, the difference between successive measurements is used.
1010+
> Unlike `Counter`, which takes the increment/delta value, the callback function reports the absolute value of the counter. To determine the reported rate the counter is changing, the difference between successive measurements is used.
10111011
1012-
Example uses for ObservableCounter: The number of page faults for each process.
1012+
Example uses for `ObservableCounter`: The number of page faults for each process.
10131013
10141014
]]></format>
10151015
</remarks>
@@ -1939,9 +1939,9 @@ Example uses for ObservableUpDownCounter: the process heap size or the approxima
19391939
## Remarks
19401940
19411941
> [!NOTE]
1942-
> Unlike UpDownCounter which takes the increment/delta value, the callback function reports the absolute value of the ObservableUpDownCounter. To determine the reported rate the ObservableUpDownCounter is changing, the difference between successive measurements is used.
1942+
> Unlike `UpDownCounter`, which takes the increment/delta value, the callback function reports the absolute value of the `ObservableUpDownCounter`. To determine the reported rate the `ObservableUpDownCounter` is changing, the difference between successive measurements is used.
19431943
1944-
Example uses for ObservableUpDownCounter: the process heap size or the approximate number of items in a lock-free circular buffer.
1944+
Example uses for `ObservableUpDownCounter`: the process heap size or the approximate number of items in a lock-free circular buffer.
19451945
19461946
]]></format>
19471947
</remarks>

xml/System.Diagnostics.Metrics/ObservableCounter`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
## Remarks
3838
3939
> [!NOTE]
40-
> Unlike Counter which takes the increment/delta value, the callback function reports the absolute value of the counter. To determine the reported rate the counter is changing, the difference between successive measurements is used.
40+
> Unlike `Counter`, which takes the increment/delta value, the callback function reports the absolute value of the counter. To determine the reported rate the counter is changing, the difference between successive measurements is used.
4141
4242
This class supports only the following generic parameter types: <xref:System.Byte>, <xref:System.Int16>, <xref:System.Int32>, <xref:System.Int64>, <xref:System.Single>, <xref:System.Double>, and <xref:System.Decimal>.
4343

xml/System.Diagnostics.Metrics/ObservableUpDownCounter`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To create an ObservableUpDownCounter object, use the <see cref="Overload:System.
3838
## Remarks
3939
4040
> [!NOTE]
41-
> Unlike UpDownCounter which takes the increment/delta value, the callback function reports the absolute value of the ObservableUpDownCounter. To determine the reported rate the ObservableUpDownCounter is changing, the difference between successive measurements is used.
41+
> Unlike `UpDownCounter`, which takes the increment/delta value, the callback function reports the absolute value of the `ObservableUpDownCounter`. To determine the reported rate that the `ObservableUpDownCounter` is changing, the difference between successive measurements is used.
4242
4343
This class supports only the following generic parameter types: <xref:System.Byte>, <xref:System.Int16>, <xref:System.Int32>, <xref:System.Int64>, <xref:System.Single>, <xref:System.Double>, and <xref:System.Decimal>.
4444

0 commit comments

Comments
 (0)