Update context.go

This commit is contained in:
Joon 2018-04-10 17:07:54 +02:00 committed by GitHub
parent 8ed15f7e9d
commit 1c8094c6bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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)
...
}
*/