diff --git a/docs/csharp/linq/standard-query-operators/projection-operations.md b/docs/csharp/linq/standard-query-operators/projection-operations.md index 388f423b460d1..c22cf8b9c569a 100644 --- a/docs/csharp/linq/standard-query-operators/projection-operations.md +++ b/docs/csharp/linq/standard-query-operators/projection-operations.md @@ -76,7 +76,7 @@ The third overload accepts a `Func` argument that acts :::code source="./snippets/standard-query-operators/SelectProjectionExamples.cs" id="ZipResultSelector"::: -With the preceding `Zip` overload, the specified function is applied to the corresponding elements `numbers` and `letter`, producing a sequence of the `string` results. +With the preceding `Zip` overload, the specified function is applied to the corresponding elements `number` and `letter`, producing a sequence of the `string` results. ## `Select` versus `SelectMany`