From e1b37109a45874bfd7bd327a4b9e9b774da6790e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20M=C3=A9ndez?= Date: Thu, 13 Oct 2022 03:40:10 -0500 Subject: [PATCH] Fix: typo and remove duplicated link (#2453) --- .../109-golang/content/101-go-advanced/104-context.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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