Skip to content

Commit

Permalink
Better ome comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sungbin committed Nov 13, 2018
1 parent 72de3a6 commit a498bf1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sorting/BubbleSort.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sorting of linked list using bubble sort
//sorting of array list using bubble sort
#include <stdio.h>

/*Displays the array, passed to this method*/
Expand Down
2 changes: 1 addition & 1 deletion sorting/InsertionSort.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sorting of linked list using insertion sort
//sorting of array list using insertion sort
#include <stdio.h>

/*Displays the array, passed to this method*/
Expand Down
2 changes: 1 addition & 1 deletion sorting/SelectionSort.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//sorting of linked list using selection sort
//sorting of array list using selection sort
#include <stdio.h>

/*Displays the array, passed to this method*/
Expand Down

0 comments on commit a498bf1

Please sign in to comment.