From 49f53942accfd9c39f76eb71b6ad44b12c723b8b Mon Sep 17 00:00:00 2001 From: iandyh Date: Sun, 22 Dec 2024 22:22:06 +0900 Subject: [PATCH] fix: seems to be a typo in the doc. dealter -> router --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 981df9d..d51e585 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ func main() { log.Printf("router received '%s' from '%v'", request[1], request[0]) // Send a reply. First we send the routing frame, which - // lets the dealer know which client to send the message. + // lets the router know which client to send the message. // The FlagMore flag tells the router there will be more // frames in this message. err = router.SendFrame(request[0], goczmq.FlagMore)