context: Fix WithValue example code.
LGTM=adg
R=adg
CC=golang-codereviews, sameer
https://golang.org/cl/169540043
diff --git a/context/context.go b/context/context.go
index ecdba34..66aff7c 100644
--- a/context/context.go
+++ b/context/context.go
@@ -124,7 +124,7 @@
//
// // NewContext returns a new Context that carries value u.
// func NewContext(ctx context.Context, u *User) context.Context {
- // return context.WithValue(userKey, u)
+ // return context.WithValue(ctx, userKey, u)
// }
//
// // FromContext returns the User value stored in ctx, if any.