Fix: typo and remove duplicated link (#2453)

pull/2468/head
William Méndez 2 years ago committed by GitHub
parent 0945105c07
commit e1b37109a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://pkg.go.dev/context'>Go Context</BadgeLink>
<BadgeLink badgeText='Read' href='https://gobyexample.com/context'>Go by Example: Context</BadgeLink>
<BadgeLink badgeText='Read' href='https://www.digitalocean.com/community/tutorials/how-to-use-contexts-in-go'>Digital Ocean: How to Use Contexts in Go</BadgeLink>
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=LSzR0VEraWw'>Context in Go</BadgeLink>
<BadgeLink badgeText='Watch' href='https://youtu.be/h2RdcrMLQAo'>Understanding Contexts in Go</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.digitalocean.com/community/tutorials/how-to-use-contexts-in-go'>DigitalOcean: How to Use Contests in Go</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://gobyexample.com/context'>Go by Example: Context</BadgeLink>

Loading…
Cancel
Save