Skip to content

Commit 8f592ab

Browse files
committed
link fixes, edits
1 parent a348c27 commit 8f592ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/profiling/perf-insights-excessive-induced-gcs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This article describes performance insights for excessive induced garbage collec
1717

1818
## Cause
1919

20-
It's rarely justified to induce GCs as GC manages its own schedule. The only rare cases are mostly from framework but even that should be very rare. If you are seeing too many induced GCs it's something to investigate especially if you are worried about your GC time or if you are surprised by the fact there are induced GCs.
20+
It's rarely justified to induce GCs as the garbage collector manages its own schedule. The only rare cases are mostly from framework but even that should be very rare. If you are seeing too many induced GCs it's something to investigate especially if you are worried about your GC time or if you are surprised by the fact there are induced GCs.
2121

2222
## Rule description
2323

@@ -27,4 +27,4 @@ When an application frequently forces GC collections, it might impact performanc
2727

2828
## How to investigate a warning
2929

30-
Look for (GC.Collect Method (System) | Microsoft Docs) and check if they are really needed.
30+
Look for <xref:System.GC.Collect%2A> and check whether the method calls are really needed.

docs/profiling/perf-insights-high-loh-fragmentation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The [large object heap (LOH)](/dotnet/standard/garbage-collection/large-object-h
2121

2222
## Rule description
2323

24-
The [.NET Garbage Collector (GC)](/dotnet/standard/garbage-collection/) puts large objects in a specific region of memory known as the [large object heap (LOH)](https://docs.microsoft.com/dotnet/standard/garbage-collection/large-object-heap). Because the LOH is not compacted, sometimes the LOH can be the source of fragmentation.
24+
The [.NET Garbage Collector (GC)](/dotnet/standard/garbage-collection/) puts large objects in a specific region of memory known as the [large object heap (LOH)](/dotnet/standard/garbage-collection/large-object-heap). Because the LOH is not compacted, sometimes the LOH can be the source of fragmentation.
2525

2626
## How to investigate a warning
2727

28-
Clicking on the "investigate" link will take you to the [Allocation](../profiling/dotnet-alloc-tool.md#allocation) view showing allocations grouped by heap type. Objects under the Large Object Heap node are contributing to the frequent GCs, consider reducing these allocations through reuse or pooling techniques.
28+
Click the **Investigate** link to go to the [Allocation](../profiling/dotnet-alloc-tool.md#allocation) view showing allocations grouped by heap type. Objects under the Large Object Heap node are contributing to the frequent GCs. Consider reducing these allocations through reuse or pooling techniques.

0 commit comments

Comments
 (0)