1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

Mismatching interface method (Pain => Color)

This commit is contained in:
Kamaleshwar 2019-07-16 14:38:07 +05:30 committed by GitHub
parent f978e42036
commit 2bd4879f72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()