cmd/pool: fix incorrect godoc

This commit is contained in:
Oliver Gugger 2021-11-29 11:08:40 +01:00
parent acdc235d50
commit dc4ef7e981
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -73,7 +73,7 @@ type Snapshot struct {
MatchedMarkets Markets `json:"matched_markets"`
}
// NewSnapshotsFromProtos creates a display Snapshot from its proto.
// NewSnapshotsFromProto creates a display Snapshot from its proto.
func NewSnapshotsFromProto(s []*auctioneerrpc.BatchSnapshotResponse) []*Snapshot {
result := make([]*Snapshot, len(s))
for idx, snapshot := range s {