Skip to content

Commit

Permalink
Fix BubbleSort wrong generic method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Lemaire committed Oct 7, 2015
1 parent 307bde2 commit dd9ce10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Algorithms/Sorting/ShellSorter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Algorithms.Sorting
{
public static class ShellSorter
{
public static void BubbleSort<T>(this IList<T> collection, Comparer<T> comparer = null)
public static void ShellSort<T>(this IList<T> collection, Comparer<T> comparer = null)
{
comparer = comparer ?? Comparer<T>.Default;
collection.ShellSortAscending(comparer);
Expand Down

0 comments on commit dd9ce10

Please sign in to comment.