1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-24 22:16:12 +03:00

format return value

This commit is contained in:
Max Funke 2019-12-20 13:45:04 +01:00 committed by GitHub
parent f978e42036
commit 07c62d1876
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
}
}
```