From ab87588a4b75b00ca2cbee3ad43a1b8b50b6937c Mon Sep 17 00:00:00 2001 From: Dima Mukhin Date: Sat, 7 Oct 2017 14:46:14 -0400 Subject: [PATCH] C# sample code from CONTRIBUTING.md bug fix --- 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 + " ");