1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-04 05:33:33 +03:00

Indent decorator.md return instruction in example

This commit is contained in:
João Vilaça 2021-03-30 12:43:23 +01:00 committed by GitHub
parent f978e42036
commit d3c225f3d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ func LogDecorate(fn Object) Object {
log.Println("Execution is completed with the result", result)
return result
return result
}
}
```