From 8ed15f7e9d33d1127107c1f445311fe50dbfac08 Mon Sep 17 00:00:00 2001 From: mossid Date: Tue, 10 Apr 2018 17:06:02 +0200 Subject: [PATCH] typo --- types/context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/context.go b/types/context.go index 85eb9e493..a6d6b3c3b 100644 --- a/types/context.go +++ b/types/context.go @@ -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) ... } */