From 2ea27a7b34ddf17299fc99307496ddbc90547e7a Mon Sep 17 00:00:00 2001 From: G <0x7c00zeno@gmail.com> Date: Mon, 3 Aug 2020 18:44:32 +0800 Subject: [PATCH] Fix client example (#13) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e19ed48..f302dcd 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ import ( func main() { res, _ := gopher.Get("gopher://gopher.floodgap.com/") - bytes, _ = res.Dir.ToText() + bytes, _ := res.Dir.ToText() fmt.Println(string(bytes)) } ```