diff --git a/content/roadmaps/109-golang/content/101-go-advanced/104-context.md b/content/roadmaps/109-golang/content/101-go-advanced/104-context.md index 0b6cba97e..61b7cfa30 100644 --- a/content/roadmaps/109-golang/content/101-go-advanced/104-context.md +++ b/content/roadmaps/109-golang/content/101-go-advanced/104-context.md @@ -1,11 +1,10 @@ # Context -The `context` package provides a standard way to solve the problem of managing state during a request. The package satisfies the need for request scoped data and provides a standardized way to handle: Deadlines, Cancellation Signals, etc. +The `context` package provides a standard way to solve the problem of managing the state during a request. The package satisfies the need for request-scoped data and provides a standardized way to handle: Deadlines, Cancellation Signals, etc. Free Content Go Context Go by Example: Context +Digital Ocean: How to Use Contexts in Go Context in Go Understanding Contexts in Go -DigitalOcean: How to Use Contests in Go -Go by Example: Context