From e2daa4740463a879b2f1d18c497a2614e7f0056a Mon Sep 17 00:00:00 2001 From: Ruchika Salwan Date: Fri, 21 Dec 2018 11:25:56 +0530 Subject: [PATCH] Updated Class name as per convention (#25937) --- .../english/algorithms/sorting-algorithms/bubble-sort/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/algorithms/sorting-algorithms/bubble-sort/index.md b/guide/english/algorithms/sorting-algorithms/bubble-sort/index.md index dcb8eca609..850d73e9fe 100644 --- a/guide/english/algorithms/sorting-algorithms/bubble-sort/index.md +++ b/guide/english/algorithms/sorting-algorithms/bubble-sort/index.md @@ -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;