mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-21 20:46:08 +03:00
creational/builder: fix typo, use correct interface method
Use the correct interface method in Builder pattern example
This commit is contained in:
parent
f978e42036
commit
d3288c71aa
@ -51,7 +51,7 @@ type Interface interface {
|
||||
## Usage
|
||||
|
||||
```go
|
||||
assembly := car.NewBuilder().Paint(car.RedColor)
|
||||
assembly := car.NewBuilder().Color(car.RedColor)
|
||||
|
||||
familyCar := assembly.Wheels(car.SportsWheels).TopSpeed(50 * car.MPH).Build()
|
||||
familyCar.Drive()
|
||||
|
Loading…
Reference in New Issue
Block a user