From d3c225f3d583cd8a8d845e0a3fb07b28c5b98fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Vila=C3=A7a?= Date: Tue, 30 Mar 2021 12:43:23 +0100 Subject: [PATCH] Indent decorator.md return instruction in example --- 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 } } ```