summaryrefslogtreecommitdiff
path: root/doc/development/go_guide
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-01 06:09:28 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-01 06:09:28 +0000
commit369de19d7906db54071ca28a1c5e75044f8d6d6c (patch)
treef14afc56f344ae98baf500df415e33e7a15d345a /doc/development/go_guide
parent190ad3b2378ee3d45ae34376ad96b00fdf46f8b3 (diff)
downloadgitlab-ce-369de19d7906db54071ca28a1c5e75044f8d6d6c.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/go_guide')
-rw-r--r--doc/development/go_guide/index.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/development/go_guide/index.md b/doc/development/go_guide/index.md
index 382f9c20331..f5b0da2f162 100644
--- a/doc/development/go_guide/index.md
+++ b/doc/development/go_guide/index.md
@@ -406,9 +406,8 @@ variable).
Since daemons are long-running applications, they should have mechanisms to
manage cancellations, and avoid unnecessary resources consumption (which could
-lead to DDOS vulnerabilities). [Go
-Context](https://github.com/golang/go/wiki/CodeReviewComments#contexts) should
-be used in functions that can block and passed as the first parameter.
+lead to DDoS vulnerabilities). [Go Context](https://github.com/golang/go/wiki/CodeReviewComments#contexts)
+should be used in functions that can block and passed as the first parameter.
## Dockerfiles