From f46dd555a8bd5304ddbf54c44ca3e3e405f6f2d9 Mon Sep 17 00:00:00 2001 From: Artjom Nemiro Date: Wed, 21 Jun 2017 16:42:56 +0300 Subject: [PATCH] Updated link to play golang and some mistakes --- structural/proxy.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/structural/proxy.md b/structural/proxy.md index 21695c5..8a33b9b 100644 --- a/structural/proxy.md +++ b/structural/proxy.md @@ -18,9 +18,9 @@ Short idea of implementation: action string } - // ObjDo implements IObject interface and handels all logic + // ObjDo implements IObject interface and handel's all logic func (obj *Object) ObjDo(action string) { - // Action behaiver + // Action behavior fmt.Printf("I can, %s", action) } @@ -41,4 +41,5 @@ Short idea of implementation: ``` ## Usage -For more complex usage, see [proxy/main.go](proxy/main.go) or [view in the Playground](https://play.golang.org/p/q2zFgDK1X9). +More complex usage of proxy as example: User creates "Terminal" authorizes and PROXY send execution command to real Terminal object +See [proxy/main.go](proxy/main.go) or [view in the Playground](https://play.golang.org/p/mnjKCMaOVE).