aboutsummaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
authorKenny Grant <kennygrant@gmail.com>2016-05-31 22:30:37 +0100
committerIan Lance Taylor <iant@golang.org>2016-06-01 00:09:32 +0000
commit04acd625d7a1044c8ca78464f6727276577ffb3d (patch)
tree989694ab853036ff34dee9da8cccba601cf11a8c /src/context
parentfe62a9ee872d4f61a47cc4e8c7bc0fb67cc4ebb6 (diff)
downloadgo-04acd625d7a1044c8ca78464f6727276577ffb3d.tar.gz
go-04acd625d7a1044c8ca78464f6727276577ffb3d.zip
context: fix typo in comments
Change-Id: I41310ec88c889fda79d80eaf4a742a1000284f60 Reviewed-on: https://go-review.googlesource.com/23591 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/context')
-rw-r--r--src/context/context.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/context.go b/src/context/context.go
index 169db74f57..fc2a56ebff 100644
--- a/src/context/context.go
+++ b/src/context/context.go
@@ -107,7 +107,7 @@ type Context interface {
// collisions.
//
// Packages that define a Context key should provide type-safe accessors
- // for the values stores using that key:
+ // for the values stored using that key:
//
// // Package user defines a User type that's stored in Contexts.
// package user