Skip to content

Commit d2d91be

Browse files
authored
Update potential-pitfalls-in-data-and-task-parallelism.md (#43669)
Removes reference to 'cust.Orders' from pitfalls section, as it appears to have been copied from https://learn.microsoft.com/en-us/dotnet/standard/parallel-programming/potential-pitfalls-with-plinq#avoid-over-parallelization and doesn't apply to this document
1 parent 78e1025 commit d2d91be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/parallel-programming/potential-pitfalls-in-data-and-task-parallelism.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In many cases, <xref:System.Threading.Tasks.Parallel.For%2A?displayProperty=name
3131

3232
- You are performing an expensive computation on each order. (The operation shown in the example is not expensive.)
3333

34-
- The target system is known to have enough processors to handle the number of threads that will be produced by parallelizing the query on `cust.Orders`.
34+
- The target system is known to have enough processors to handle the number of threads that will be produced by parallelizing the processing.
3535

3636
In all cases, the best way to determine the optimum query shape is to test and measure.
3737

0 commit comments

Comments
 (0)