Updated Class name as per convention (#25937)

pull/34718/head
Ruchika Salwan 2018-12-21 11:25:56 +05:30 committed by Manish Giri
parent dc3af2ff54
commit e2daa47404
1 changed files with 1 additions and 1 deletions

View File

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