From 10d11149625ab20c87ee6e4ef64f0c44b08e9205 Mon Sep 17 00:00:00 2001 From: Gokul PM Date: Wed, 9 Aug 2023 17:56:39 +0530 Subject: [PATCH] README: fix invocation of Go routine in example (#4019) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3eaf0583..a19249b4 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ go func() { // ... error handling // handle the connection, usually in a new Go routine } -} +}() ``` The listener `ln` can now be used to accept incoming QUIC connections by (repeatedly) calling the `Accept` method (see below for more information on the `quic.Connection`).