From ecac3873b4c85e2ae40ade50a577ee08c752cc3f Mon Sep 17 00:00:00 2001 From: shaojm Date: Thu, 30 Mar 2023 12:05:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B914.10=20=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=A4=BA=E4=BE=8B=E4=B8=AD=E7=9A=84=E4=B8=AD=E6=96=87=E5=BC=95?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eBook/14.10.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eBook/14.10.md b/eBook/14.10.md index 75ec30e97..1c1cae108 100644 --- a/eBook/14.10.md +++ b/eBook/14.10.md @@ -74,12 +74,12 @@ func main() { for i := N - 1; i >= 0; i-- { // doesn’t matter what order if <-reqs[i].replyc != N+2*i { - fmt.Println(“fail at”, i) + fmt.Println("fail at", i) } else { - fmt.Println(“Request “, i, “is ok!”) + fmt.Println("Request ", i, "is ok!") } } - fmt.Println(“done”) + fmt.Println("done") } ``` 这些代码可以在 [multiplex_server.go](examples/chapter_14/multiplex_server.go) 找到