Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-03-09 14:31:50 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-03-09 14:31:50 +0300
commit25f72bf5a5ee424259a0410ef483bba951fe254c (patch)
treeeb3516a7c7ab832c79a9a63300b0fa40456c85b2
parent9566ac120abe7565d4a1736bf6027daa202c136f (diff)
catfile: Remove typoed character
Remove typo in a comment.
-rw-r--r--internal/git/catfile/batch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/git/catfile/batch.go b/internal/git/catfile/batch.go
index 961b7b755..1080f0c8c 100644
--- a/internal/git/catfile/batch.go
+++ b/internal/git/catfile/batch.go
@@ -124,7 +124,7 @@ func (c *batch) Close() {
c.closed = true
if c.cancel != nil {
// both c.batchProcess and c.batchCheckProcess have goroutines that listen on
- // <ctx.Done() when this is cancelled, it will cause those goroutines to close both
+ // ctx.Done() when this is cancelled, it will cause those goroutines to close both
// writers
c.cancel()
}