From 0a4cc23d20eada85aa22fde264a3cfec8d6a65de Mon Sep 17 00:00:00 2001 From: ktr Date: Thu, 25 Oct 2018 01:59:47 +0900 Subject: [PATCH] wire: fix typo in example code (google/go-cloud#560) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8baa69f..ed08ab7 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ type FooerPlus interface { Bar() String } -func ProviderFooerPlus() FooerPlus { +func ProvideFooerPlus() FooerPlus { ... }