From b5702f7953ac32bbcd667a563973e56ee10361bd Mon Sep 17 00:00:00 2001 From: Artjom Nemiro Date: Thu, 15 Jun 2017 21:40:10 +0300 Subject: [PATCH] Update proxy doc --- structural/proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/structural/proxy.md b/structural/proxy.md index 5da74f9..19d66f7 100644 --- a/structural/proxy.md +++ b/structural/proxy.md @@ -18,7 +18,7 @@ Short idea of implementation: func (obj *Object) ObjDo(action string) { // Action handler - fmt.Printf("I do, %s", action) + fmt.Printf("I can, %s", action) } type ProxyObject struct { @@ -41,4 +41,4 @@ Short idea of implementation: ``` ## Usage -For usage, see [observer/main.go](proxy/main.go) or [view in the Playground](https://play.golang.org/p/cr8jEmDmw0). +For usage, see [proxy/main.go](proxy/main.go) or [view in the Playground]().