diff --git a/guide/english/java/inheritance-basics/index.md b/guide/english/java/inheritance-basics/index.md index 7eb39ad26f..402cd3d0fa 100644 --- a/guide/english/java/inheritance-basics/index.md +++ b/guide/english/java/inheritance-basics/index.md @@ -45,7 +45,7 @@ System.out.println(modelS.getManufacturerName()); modelS.charge(); ``` -![:rocket:](//forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":rocket:") Run Code +![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":rocket:") Run Code See here that the class `ElectricCar` inherits or `extends` the public methods from `Car` class, as well as has its own methods and properties. Cool way to pass on information!