vendor/golang.org/x/net/context/context.go
changeset 260 445e01aede7e
parent 242 2a9ec03fe5a1
--- a/vendor/golang.org/x/net/context/context.go	Tue Aug 23 22:33:28 2022 +0200
+++ b/vendor/golang.org/x/net/context/context.go	Tue Aug 23 22:39:43 2022 +0200
@@ -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.