We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7255c2c commit 29ceac2Copy full SHA for 29ceac2
1 file changed
factory/README.md
@@ -98,7 +98,7 @@ Now on the client code we can create different types of cars using the factory c
98
var car1 = CarsFactory.getCar(CarType.FORD);
99
var car2 = CarsFactory.getCar(CarType.FERRARI);
100
LOGGER.info(car1.getDescription());
101
-LOGGER.info(car2.getDescription());;
+LOGGER.info(car2.getDescription());
102
```
103
104
Program output:
0 commit comments