Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
chore: change sorting algorithm names
  • Loading branch information
ZhangzihanGit authored Nov 2, 2020
1 parent f695c54 commit 461569b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/algorithms/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const algorithms = {
},
},
'quickSort': {
name: 'Quick Sort',
name: 'Quicksort',
category: 'Sorting',
explanation: Explanation.QSExp,
param: <Param.QSParam />,
Expand All @@ -49,7 +49,7 @@ const algorithms = {
},
},
'heapSort': {
name: 'Heap Sort',
name: 'Heapsort',
category: 'Sorting',
explanation: Explanation.HSExp,
param: <Param.HSParam />,
Expand Down

0 comments on commit 461569b

Please sign in to comment.