mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
fix comment.
the sample doesn't get appended to the list of sampleappenders.
This commit is contained in:
parent
8a0b506ea8
commit
c61d8f2164
|
@ -23,8 +23,8 @@ type SampleAppender interface {
|
|||
Append(*model.Sample)
|
||||
}
|
||||
|
||||
// Fanout is a SampleAppender that appends every sample to a list of other
|
||||
// SampleAppenders.
|
||||
// Fanout is a SampleAppender that appends every sample to each SampleAppender
|
||||
// in its list.
|
||||
type Fanout []SampleAppender
|
||||
|
||||
// Append implements SampleAppender. It appends the provided sample to all
|
||||
|
|
Loading…
Reference in a new issue