Skip to content

Commit 29ceac2

Browse files
authored
Update README.md (iluwatar#1592)
1 parent 7255c2c commit 29ceac2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

factory/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Now on the client code we can create different types of cars using the factory c
9898
var car1 = CarsFactory.getCar(CarType.FORD);
9999
var car2 = CarsFactory.getCar(CarType.FERRARI);
100100
LOGGER.info(car1.getDescription());
101-
LOGGER.info(car2.getDescription());;
101+
LOGGER.info(car2.getDescription());
102102
```
103103

104104
Program output:

0 commit comments

Comments
 (0)