From 29ceac2fb06a4ffb85bdd327cdf3824ba6ccdaec Mon Sep 17 00:00:00 2001 From: Anurag870 Date: Sat, 5 Dec 2020 14:26:00 +0530 Subject: [PATCH] Update README.md (#1592) --- factory/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factory/README.md b/factory/README.md index e2f324541..321ec337a 100644 --- a/factory/README.md +++ b/factory/README.md @@ -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: