From 07c62d18763eca86ebda4298e6c4483b981992eb Mon Sep 17 00:00:00 2001 From: Max Funke Date: Fri, 20 Dec 2019 13:45:04 +0100 Subject: [PATCH] format return value --- structural/decorator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structural/decorator.md b/structural/decorator.md index cfb769f..d428356 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 } } ```