website: fix typo in connect example (#4774)

This commit is contained in:
Matt Ho 2018-10-10 02:01:57 -07:00 committed by Hans Hasselberg
parent 29170340b3
commit 70cedfd10a

View file

@ -60,7 +60,7 @@ func main() {
} }
// Serve! // Serve!
server.ListenAndServerTLS("", "") server.ListenAndServeTLS("", "")
} }
``` ```