README: Small update to clarify on Goroutines

This commit is contained in:
Max Hilbrunner 2017-12-15 15:11:58 +01:00 committed by GitHub
parent 9e895470dd
commit cbbbe4583c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1071,7 +1071,7 @@ func main() {
### Goroutines inside a middleware
When starting inside a middleware or handler, you **SHOULD NOT** use the original context inside it, you have to use a read-only copy.
When starting new Goroutines inside a middleware or handler, you **SHOULD NOT** use the original context inside it, you have to use a read-only copy.
```go
func main() {