Updated Class name as per convention (#25937)

This commit is contained in:
Ruchika Salwan
2018-12-21 11:25:56 +05:30
committed by Manish Giri
parent dc3af2ff54
commit e2daa47404

View File

@ -72,7 +72,7 @@ while(!sorted) {
``` ```
### Example in Java. ### Example in Java.
```java ```java
public class bubble-sort { public class BubbleSort {
static void sort(int[] arr) { static void sort(int[] arr) {
int n = arr.length; int n = arr.length;
int temp = 0; int temp = 0;