From 38e5c587c7d71c9b72fe7a2a67bf6573c60bf5d0 Mon Sep 17 00:00:00 2001 From: franklin216 Date: Sat, 17 Nov 2018 09:39:27 +0100 Subject: [PATCH] Show Rocket Emoji (#22169) Rocket Emoji was not shown --- guide/english/java/inheritance-basics/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!