aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/protocol
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/protocol')
-rw-r--r--plumbing/protocol/packp/srvresp.go2
-rw-r--r--plumbing/protocol/packp/updreq.go3
2 files changed, 2 insertions, 3 deletions
diff --git a/plumbing/protocol/packp/srvresp.go b/plumbing/protocol/packp/srvresp.go
index 0e027b4..95e1e57 100644
--- a/plumbing/protocol/packp/srvresp.go
+++ b/plumbing/protocol/packp/srvresp.go
@@ -13,8 +13,8 @@ import (
const ackLineLen = 44
// ServerResponse object acknowledgement from upload-pack service
-// TODO: implement support for multi_ack or multi_ack_detailed responses
type ServerResponse struct {
+ // TODO: implement support for multi_ack or multi_ack_detailed responses
ACKs []plumbing.Hash
}
diff --git a/plumbing/protocol/packp/updreq.go b/plumbing/protocol/packp/updreq.go
index b685999..4337ace 100644
--- a/plumbing/protocol/packp/updreq.go
+++ b/plumbing/protocol/packp/updreq.go
@@ -15,9 +15,8 @@ var (
// ReferenceUpdateRequest values represent reference upload requests.
// Values from this type are not zero-value safe, use the New function instead.
-//
-// TODO: Add support for push-cert
type ReferenceUpdateRequest struct {
+ // TODO: Add support for push-cert
Capabilities *capability.List
Commands []*Command
Shallow *plumbing.Hash