docs: fix typo (missing "forgot") in comment (#92)

This commit is contained in:
Ben Hoyt
2018-12-03 12:19:00 -05:00
committed by Robert van Gent
parent ef9bb67152
commit 28f5930663

View File

@@ -339,7 +339,7 @@ to add a provider for `Greeter`. Let's see what happens:
``` go ``` go
func InitializeEvent(phrase string) (Event, error) { func InitializeEvent(phrase string) (Event, error) {
wire.Build(NewEvent, NewMessage) // woops! We to add a provider for Greeter wire.Build(NewEvent, NewMessage) // woops! We forgot to add a provider for Greeter
return Event{}, nil return Event{}, nil
} }
``` ```