diff --git a/_examples/http-listening/README.md b/_examples/http-listening/README.md index e395f31c..7df06813 100644 --- a/_examples/http-listening/README.md +++ b/_examples/http-listening/README.md @@ -5,7 +5,7 @@ You can start the server(s) listening to any type of `net.Listener` or even `http.Server` instance. The method for initialization of the server should be passed at the end, via `Run` function. -The most common method that Go developers are use to serve their servers are +The most common method that Go developers use to serve their servers are by passing a network address with form of "hostname:ip". With Iris we use the `iris.Addr` which is an `iris.Runner` type @@ -248,4 +248,4 @@ func main() { app.Run(iris.Addr(":8080"), iris.WithoutInterruptHandler) } -``` \ No newline at end of file +```