README: fix invocation of Go routine in example (#4019)

This commit is contained in:
Gokul PM 2023-08-09 17:56:39 +05:30 committed by GitHub
parent 571d3adef4
commit 10d1114962
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`).