From e47ae0f660dbb7722160089aacdfa56d6dba4e24 Mon Sep 17 00:00:00 2001
From: Mihir Rathwa <10956874+mihirathwa@users.noreply.github.com>
Date: Fri, 15 Mar 2019 12:28:14 +0530
Subject: [PATCH] Fixed Rocket icon for "Run Code". (#26583)
---
guide/english/java/loops/break-control-statement/index.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guide/english/java/loops/break-control-statement/index.md b/guide/english/java/loops/break-control-statement/index.md
index 67b6bdea02..2e59f14c1e 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