diff --git a/guide/english/java/loops/break-control-statement/index.md b/guide/english/java/loops/break-control-statement/index.md
index 67b6bdea02d..2e59f14c1e1 100644
--- a/guide/english/java/loops/break-control-statement/index.md
+++ b/guide/english/java/loops/break-control-statement/index.md
@@ -37,7 +37,7 @@ for (int i = 0; i < 10; i++)
}
```
- Run Code
+ Run Code
`break` statements can be particulary useful while searching for an element in an array. Using `break` in the following code improves efficiency as the loop stops as soon as the element we are looking for (`searchFor`) is found, instead of going on till the end of `arrayInts` is reached.
@@ -71,4 +71,4 @@ while(i < 10){
}
```
- Run Code
+ Run Code