Skip to content

Commit f856dc4

Browse files
Merge pull request #135 from swayamkaul/master
Update Bubble Sort.cpp
2 parents 0d8c341 + 913c2a9 commit f856dc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Searching and Sorting/Bubble Sort/C++/Bubble Sort.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <bits/stdc++.h>
44
using namespace std;
55

6-
void swap(int *xp, int *yp)
6+
void swap(int *xp, int *yp) //swapping the two numbers
77
{
88
int temp = *xp;
99
*xp = *yp;

0 commit comments

Comments
 (0)