Update context.go

This commit is contained in:
Joon
2018-04-10 17:07:54 +02:00
committed by GitHub
parent 8ed15f7e9d
commit 1c8094c6bd
+1 -1
View File
@@ -18,7 +18,7 @@ next decorator or handler. For example,
func MsgHandler(ctx Context, tx Tx) Result {
...
ctx = context.WithValue(key, value)
ctx = ctx.WithValue(key, value)
...
}
*/