Skip to content

Commit 676932a

Browse files
committed
multi: fix comments
1 parent 0122823 commit 676932a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

proof/archive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ type AnnotatedProof struct {
136136
// Exporter is used to fetch proofs by their unique identifier.
137137
type Exporter interface {
138138
// FetchProof fetches a proof for an asset uniquely identified by the
139-
// passed ProofIdentifier.
139+
// given locator.
140140
//
141141
// If a proof cannot be found, then ErrProofNotFound should be
142142
// returned. If multiple proofs exist for the given fields of the

tapdb/ignore_tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func NewIgnoreUniverseTree(db BatchedUniverseTree) *IgnoreUniverseTree {
2424
return &IgnoreUniverseTree{db: db}
2525
}
2626

27-
// AddTuple adds a new ignore tuples to the ignore tree.
27+
// AddTuples adds a new ignore tuples to the ignore tree.
2828
func (it *IgnoreUniverseTree) AddTuples(ctx context.Context,
2929
spec asset.Specifier, tuples ...universe.SignedIgnoreTuple,
3030
) lfn.Result[universe.AuthIgnoreTuples] {

universe/ignore_records.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func (i *IgnoreTuple) Record() tlv.Record {
9494
// IgnoreTuples is a slice of IgnoreTuple.
9595
type IgnoreTuples = []*IgnoreTuple
9696

97-
// IgnoreSignature is a Schnorr signature over an IgnoreTuple.
97+
// IgnoreSig is a Schnorr signature over an IgnoreTuple.
9898
//
9999
// TODO(roasbeef): sig validate methods, sig gen above
100100
type IgnoreSig struct {

universe/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,7 @@ type IgnoreTreeArchive interface {
13031303
// Sum returns the sum of the ignore tuples for the given asset.
13041304
Sum(context.Context, asset.Specifier) SumQueryResp
13051305

1306-
// AddTuple adds a new ignore tuples to the ignore tree.
1306+
// AddTuples adds a new ignore tuples to the ignore tree.
13071307
//
13081308
// TODO(roasbeef): does all the signing under the hood?
13091309
AddTuples(context.Context, asset.Specifier,

0 commit comments

Comments
 (0)