diff --git a/guide/english/java/constructors/index.md b/guide/english/java/constructors/index.md
index 91e070e0f8..915c2561c1 100644
--- a/guide/english/java/constructors/index.md
+++ b/guide/english/java/constructors/index.md
@@ -66,7 +66,7 @@ public class Car {
}
```
- Run Code
+ Run Code
Notice that when we write a constructor in this way i.e., providing a parameter, we are controlling (point no. 3) the way an instance of `Car` is created. In short, we are saying in this example that **you MUST provide a model name in order to get an instance of Car class**.
@@ -91,7 +91,7 @@ public class Bank {
}
```
- Run Code
+ Run Code
Notice that the constructor is `private`. This enforces the fact that no one else is allowed to create an instance of the Bank.
In fact, if in another class, you try: