Merge pull request #1041 from Dieterbe/fix-fanout-comment

fix comment.
This commit is contained in:
Julius Volz 2015-08-31 12:28:51 +02:00
commit dfbda8fd3f
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ type SampleAppender interface {
Append(*model.Sample) Append(*model.Sample)
} }
// Fanout is a SampleAppender that appends every sample to a list of other // Fanout is a SampleAppender that appends every sample to each SampleAppender
// SampleAppenders. // in its list.
type Fanout []SampleAppender type Fanout []SampleAppender
// Append implements SampleAppender. It appends the provided sample to all // Append implements SampleAppender. It appends the provided sample to all