This commit is contained in:
mossid 2018-04-10 17:06:02 +02:00
parent 442e677300
commit 8ed15f7e9d
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ The intent of Context is for it to be an immutable object that can be
cloned and updated cheaply with WithValue() and passed forward to the
next decorator or handler. For example,
func MsgHandler(context Context, tx Tx) Result {
func MsgHandler(ctx Context, tx Tx) Result {
...
context = context.WithValue(key, value)
ctx = context.WithValue(key, value)
...
}
*/