From e1dacc56e6d1aa93b3abfb4108804ead43099200 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Sun, 30 Aug 2015 16:26:46 +0200 Subject: [PATCH] fix comment. the sample doesn't get appended to the list of sampleappenders. --- storage/storage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/storage.go b/storage/storage.go index 3c8e898fb..9f509e2dc 100644 --- a/storage/storage.go +++ b/storage/storage.go @@ -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