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
1 changed files with 1 additions and 1 deletions

View File

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