Skip to content

Commit 58b0f3e

Browse files
Update projection-operations (Zip section).md (#46792)
there is a typo issue , right below the last code snippet in the Zip section, the word 'numbers' should be replaced with word 'number'. The sentence is : With the preceding Zip overload, the specified function is applied to the corresponding elements numbers and letter, producing a sequence of the string results.
1 parent f0fad1f commit 58b0f3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/linq/standard-query-operators/projection-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The third overload accepts a `Func<TFirst, TSecond, TResult>` argument that acts
7676

7777
:::code source="./snippets/standard-query-operators/SelectProjectionExamples.cs" id="ZipResultSelector":::
7878

79-
With the preceding `Zip` overload, the specified function is applied to the corresponding elements `numbers` and `letter`, producing a sequence of the `string` results.
79+
With the preceding `Zip` overload, the specified function is applied to the corresponding elements `number` and `letter`, producing a sequence of the `string` results.
8080

8181
## `Select` versus `SelectMany`
8282

0 commit comments

Comments
 (0)