Skip to content

Commit 9ef5eba

Browse files
authored
Merge pull request fnplus#637 from bkharbanda/master
added comments
2 parents 5f25f2a + 5b726f4 commit 9ef5eba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Algorithms/Arrays/Bubble_sort/SortBubble.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public class SortBubble
2424
}
2525
System.out.println("The given array in ascending order is as follows : ");
2626
System.out.println(a);
27-
for(i=0;i<a.length;i++)
27+
for(i=0;i<a.length;i++)//loop for printing array
2828

2929
{ System.out.print(a[i] + " "); }
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)