From cbbf486be39f4d0945e108ed2e446e1927666f6b Mon Sep 17 00:00:00 2001 From: "Yang Yang(Tony)" <29932814+tonyyang-svail@users.noreply.github.com> Date: Sat, 11 Jul 2020 21:07:45 -0700 Subject: [PATCH] Fix indentation --- structural/decorator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structural/decorator.md b/structural/decorator.md index cfb769f..64cd49d 100644 --- a/structural/decorator.md +++ b/structural/decorator.md @@ -18,7 +18,7 @@ func LogDecorate(fn Object) Object { log.Println("Execution is completed with the result", result) - return result + return result } } ```