From 8b4ed79c1bbade378a00693bf020d6a17aadff1f Mon Sep 17 00:00:00 2001 From: Dima Mukhin Date: Sun, 8 Oct 2017 01:47:44 -0400 Subject: [PATCH] C# sample code from CONTRIBUTING.md bug fix (#507) --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 07618f95..7ddb4059 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -164,7 +164,7 @@ using System; public class QuickSort { - public static void QuickSort(int[] a) + public static void DoQuickSort(int[] a) { /* Your implementation here... @@ -174,7 +174,7 @@ public class QuickSort public static void Main() { int[] arr = new int[] {2, 3, 0, 4}; - QuickSort(arr); + DoQuickSort(arr); foreach(int element in arr) { Console.Write(element + " ");