Skip to content

Commit c290ed0

Browse files
authored
Fix typos in merge_sort.m
1 parent 195e80b commit c290ed0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

algorithms/sorting/merge_sort.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%% Merg sorting Algorithm:
1+
%% Merge sorting Algorithm:
22
function y = merge_sort(x)
33
% function to sort vector 'x' with using the merge sort algorithm
44
% INPUT: 'x' array
@@ -33,4 +33,4 @@
3333
% The next y-value is less than the next x-value
3434
z(iz) = y(iy); iy = iy + 1;
3535
end
36-
end
36+
end

0 commit comments

Comments
 (0)