anupavanm/csharp-design-patterns-for-humans

Typo

Closed this issue · 1 comments

Strategy using example:

var sorter = new Sorter(new QuickSortStrategy());
sorter.Sort(unSortedList); // // Output : Sorting using Bubble Sort !

QuickSortStrategy - > BubbleSortStrategy

Fixed