From 50d5464a6fabdd8e3e602e22c6e385d10b9f09ff Mon Sep 17 00:00:00 2001 From: divyab275 Date: Fri, 9 Oct 2020 16:51:34 +0530 Subject: [PATCH] Take changed to Skip In the last example, Skip is used but the doc says Take. Changed that --- 101-linq-samples/docs/partitions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/101-linq-samples/docs/partitions.md b/101-linq-samples/docs/partitions.md index 49a055a..f7a1b88 100644 --- a/101-linq-samples/docs/partitions.md +++ b/101-linq-samples/docs/partitions.md @@ -25,7 +25,7 @@ This sample uses `Skip` to get all but the first 4 elements of the array. ## Nested skip partitions -This sample uses `Take` to get all but the first 2 orders from customers in Washington. +This sample uses `Skip` to get all but the first 2 orders from customers in Washington. ``` cs --region nested-skip --source-file ../src/Partitions.cs --project ../src/Try101LinqSamples.csproj ```