From e0445a7b638e3349ea82853377c7f585c5c4be7e Mon Sep 17 00:00:00 2001 From: ivangaru <40645274+ivangaru@users.noreply.github.com> Date: Mon, 10 Dec 2018 09:26:56 -0800 Subject: [PATCH] Translate comments in code to Spanish (#20131) Translate comments in code to Spanish --- guide/spanish/csharp/linq/any/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/spanish/csharp/linq/any/index.md b/guide/spanish/csharp/linq/any/index.md index 9390e982a0..8bb6938c94 100644 --- a/guide/spanish/csharp/linq/any/index.md +++ b/guide/spanish/csharp/linq/any/index.md @@ -25,14 +25,14 @@ var fruits = new List() { new Fruit() { Id = 6, Name = "Mango", Color = "Yellow", Quantity: 2 } }; - // Check if any Fruits have a quantity greater than 20 + // Consulta si alguna fruta tiene cantidad mayor a 20 var anyFruitGreaterThanTwenty = fruits.Any(f => f.Quantity > 20); // true - // Any Fruit with color Green + // Consulta si alguna fruta es de color verde var anyGreen = fruits.Any(f => f.Color == "Green"); // false var hasFruits = fruits.Any(); // true var hasYellowFruit = fruits.Any(f => f.Color == "Yellow"); // true -``` \ No newline at end of file +```