From 14f4e8f0fa1dec219876a1040436bf9ad7156c20 Mon Sep 17 00:00:00 2001 From: Hadis Sulejmani Date: Sat, 28 Jan 2023 11:47:26 +0100 Subject: [PATCH] Update restrictions.md --- 101-linq-samples/docs/restrictions.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/101-linq-samples/docs/restrictions.md b/101-linq-samples/docs/restrictions.md index 334a946..a28675e 100644 --- a/101-linq-samples/docs/restrictions.md +++ b/101-linq-samples/docs/restrictions.md @@ -6,8 +6,7 @@ The `where` clause of a LINQ query *restricts* the output sequence. Only the ele This sample uses where to find all elements of an array less than 5. It demonstrates the components of a query, including a `where` clause that filters for small numbers. -``` cs --region where-syntax --source-file ../src/Restrictions.cs --project ../src/Try101LinqSamples.csproj -``` +```cs --region where-syntax --source-file ../src/Restrictions.cs --project ../src/Try101LinqSamples.csproj``` ## Filter elements on a property