Update README.md (#1592)

This commit is contained in:
Anurag870
2020-12-05 10:56:00 +02:00
committed by GitHub
parent 7255c2c5e7
commit 29ceac2fb0
+1 -1
View File
@@ -98,7 +98,7 @@ Now on the client code we can create different types of cars using the factory c
var car1 = CarsFactory.getCar(CarType.FORD); var car1 = CarsFactory.getCar(CarType.FORD);
var car2 = CarsFactory.getCar(CarType.FERRARI); var car2 = CarsFactory.getCar(CarType.FERRARI);
LOGGER.info(car1.getDescription()); LOGGER.info(car1.getDescription());
LOGGER.info(car2.getDescription());; LOGGER.info(car2.getDescription());
``` ```
Program output: Program output: