From d0b6605a165315b6758853f8751eeb568f560d5a Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 14 Apr 2021 09:06:19 +0200 Subject: [PATCH] rpc: document ConnEventType constants --- rpc/conn.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpc/conn.go b/rpc/conn.go index c59bbd3..b2bcf28 100644 --- a/rpc/conn.go +++ b/rpc/conn.go @@ -42,10 +42,10 @@ type Conn struct { type ConnEventType int const ( - _ ConnEventType = iota - ConnEventStderr - ConnEventDebug - ConnEventUpload + _ ConnEventType = iota + ConnEventStderr // stderr from spawned process + ConnEventDebug // debug message + ConnEventUpload // remote helper upload in progress ) type ConnEvent struct { -- 2.44.1