diff --git a/guide/spanish/csharp/linq/all/index.md b/guide/spanish/csharp/linq/all/index.md index 613e6e6ca3..f0a4d11098 100644 --- a/guide/spanish/csharp/linq/all/index.md +++ b/guide/spanish/csharp/linq/all/index.md @@ -24,9 +24,9 @@ var fruits = new List() { new Fruit() { Id = 6, Name = "Mango", Color = "Yellow", Quantity: 2 } }; - // All Fruit have a quantity greater than 0. + // Todas las frutas con cantidad mayor a cero var allFruitsHaveAQuantity = fruits.All(f => f.Quantity > 0); // true - // All Fruit have the Color Yellow + // Todas las frutas tienen color amarillo var allYellow = fruits.All(f => f.Color == "Yellow"); // false -``` \ No newline at end of file +```