#984 update Builder readme

This commit is contained in:
Ilkka Seppälä 2019-11-11 22:10:31 +02:00
parent 0272d71851
commit 2628cc0dfc

View File

@ -110,7 +110,7 @@ And then we have the builder
And then it can be used as:
```java
Hero mage = new Hero.Builder(Profession.MAGE, "Riobard").withHairColor(HairColor.BLACK).withWeapon(Weapon.DAGGER).build();
var mage = new Hero.Builder(Profession.MAGE, "Riobard").withHairColor(HairColor.BLACK).withWeapon(Weapon.DAGGER).build();
```
## Applicability