Skip to content

Commit

Permalink
C# sample code from CONTRIBUTING.md bug fix (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaMukhin authored and singhpratyush committed Oct 8, 2017
1 parent b1b9e13 commit 8b4ed79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ using System;

public class QuickSort
{
public static void QuickSort(int[] a)
public static void DoQuickSort(int[] a)
{
/*
Your implementation here...
Expand All @@ -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 + " ");
Expand Down

0 comments on commit 8b4ed79

Please sign in to comment.