Ver código fonte

daemon/logger: fix godoc

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 2 anos atrás
pai
commit
be1829f63d
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      daemon/logger/logger.go

+ 1 - 1
daemon/logger/logger.go

@@ -87,7 +87,7 @@ type ReadConfig struct {
 
 
 // LogReader is the interface for reading log messages for loggers that support reading.
 // LogReader is the interface for reading log messages for loggers that support reading.
 type LogReader interface {
 type LogReader interface {
-	// Read logs from underlying logging backend
+	// ReadLogs reads logs from underlying logging backend.
 	ReadLogs(ReadConfig) *LogWatcher
 	ReadLogs(ReadConfig) *LogWatcher
 }
 }