Skip to content

Commit a255433

Browse files
committed
h:16 seperately -> separately h:17 fucntion -> function
1 parent 70a90bd commit a255433

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/merge_sort.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
* and right part.
1414
* Example: Say the input is -10 32 45 -78 91 1 0 -16 then the left part will be
1515
* -10 32 45 -78 and the right part will be 91 1 0 6.
16-
* (2) Sort Each of them seperately. Note that here sort does not mean to sort it using some other
17-
* method. We already wrote fucntion to sort it. Use the same.
16+
* (2) Sort Each of them separately. Note that here sort does not mean to sort it using some other
17+
* method. We already wrote function to sort it. Use the same.
1818
* (3) Then merge the two sorted parts.
1919
*
2020
* ------------

0 commit comments

Comments
 (0)