From 9dff06393b23c829e8cd9d1b72e1b6df167b7419 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Sun, 16 Apr 2017 16:43:42 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cf9d72b..071b353 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Suggested prerequisites ==================== [](https://github.com/MartinChavez/CSharp) -#Overview +# Overview ```C# /* Language Integrated Query (LINQ) - Adds query capabilities to the language syntax of C#. @@ -169,7 +169,7 @@ Suggested prerequisites } ``` -#Sorting +# Sorting ```C# /* Sorting */ // LINQ Provides a set of ordering operators that allow you to order a sequence of objects by one or more criteria @@ -201,7 +201,7 @@ Suggested prerequisites Assert.IsTrue(orderedProgrammingLanguages.Last().Name == "F#"); } ``` -#Comparing and Combining +# Comparing and Combining ```C# /* Comparing and Combining*/ // With LINQ, it is possible to compare and combine using the Set Operators, which are extension methods of the Enumerable class @@ -254,7 +254,7 @@ Suggested prerequisites Assert.AreEqual(expectedUnion[index], union[index]); ``` -#Grouping and Summing +# Grouping and Summing ```C# /* GroupBy - Is an operator used to group the data and perform analysis