fix comment.

the sample doesn't get appended to the list of sampleappenders.
This commit is contained in:
Dieter Plaetinck 2015-08-30 16:26:46 +02:00
parent bfdd474202
commit e1dacc56e6
1 changed files with 2 additions and 2 deletions

View File

@ -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