From 1d73fd92d5dd1779f4123b6063d9bbb052600d4f Mon Sep 17 00:00:00 2001 From: Cassondra Foesch Date: Mon, 22 Feb 2021 10:44:28 +0000 Subject: [PATCH] fix typo, error message is now two-way greppable --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 5505c6b..a70703c 100644 --- a/conn.go +++ b/conn.go @@ -91,7 +91,7 @@ func (c *clientConn) recv() error { // This is an unexpected occurrence. Send the error // back to all listeners so that they terminate // gracefully. - return errors.Errorf("sid: %v not fond", sid) + return errors.Errorf("sid not found: %v", sid) } ch <- result{typ: typ, data: data}