Skip to content

Commit

Permalink
Converts tabs to 4 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusschulz committed Sep 5, 2015
1 parent 0a94e1a commit 83c88e1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -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"]
```
Expand All @@ -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);
Expand Down Expand Up @@ -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"
```
Expand Down

0 comments on commit 83c88e1

Please sign in to comment.