summaryrefslogtreecommitdiffstats
path: root/vendor/golang.org/x/net/context/context.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/golang.org/x/net/context/context.go')
-rw-r--r--vendor/golang.org/x/net/context/context.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/golang.org/x/net/context/context.go b/vendor/golang.org/x/net/context/context.go
index a3c021d3f..cf66309c4 100644
--- a/vendor/golang.org/x/net/context/context.go
+++ b/vendor/golang.org/x/net/context/context.go
@@ -21,9 +21,9 @@
// explicitly to each function that needs it. The Context should be the first
// parameter, typically named ctx:
//
-// func DoSomething(ctx context.Context, arg Arg) error {
-// // ... use ctx ...
-// }
+// func DoSomething(ctx context.Context, arg Arg) error {
+// // ... use ctx ...
+// }
//
// Do not pass a nil Context, even if a function permits it. Pass context.TODO
// if you are unsure about which Context to use.