Update README.md (#1592)

This commit is contained in:
Anurag870 2020-12-05 14:26:00 +05:30 committed by GitHub
parent 7255c2c5e7
commit 29ceac2fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 car2 = CarsFactory.getCar(CarType.FERRARI);
LOGGER.info(car1.getDescription());
LOGGER.info(car2.getDescription());;
LOGGER.info(car2.getDescription());
```
Program output: