From 83c88e176aa5ab79331532d59ca1adf4afbbfde1 Mon Sep 17 00:00:00 2001 From: Marius Schulz Date: Sat, 5 Sep 2015 18:16:32 +0200 Subject: [PATCH] Converts tabs to 4 spaces --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8285291..4242ee4 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,8 @@ Returns distinct elements from the given sequence using the default equality com ```csharp string[] spellingsOfJavaScript = { "JavaScript", "Javascript", "javascript" }; string[] distinctSpellings = spellingsOfJavaScript - .Distinct(n => n.ToLower()) - .ToArray(); + .Distinct(n => n.ToLower()) + .ToArray(); // distinctSpellings = ["JavaScript"] ``` @@ -93,10 +93,10 @@ Passes every element of the sequence to the specified action and returns it afte ```csharp string[] ringInscriptionLines = { - "One Ring to rule them all", - "One Ring to find them", - "One Ring to bring them all", - "and in the darkness bind them" + "One Ring to rule them all", + "One Ring to find them", + "One Ring to bring them all", + "and in the darkness bind them" }; ringInscriptionLines.Each(Console.WriteLine); @@ -234,8 +234,8 @@ Concatenates all items of a sequence using the specified separator between each ```csharp string[] nameParts = { "The", "One", "Ring" }; string ringName = nameParts - .Select(part => part.ToUpper()) - .JoinedBy(" "); + .Select(part => part.ToUpper()) + .JoinedBy(" "); // ringName = "THE ONE RING" ```