From 5aba0d0ff4b6258eba5437da1a81b2b797541913 Mon Sep 17 00:00:00 2001 From: Stefan Pahlplatz Date: Thu, 22 Mar 2018 12:02:22 +0100 Subject: [PATCH] Fixed a typo Former-commit-id: 4d3a281839fe2dc72d1cb67af0f6d3b04782968e --- _examples/http-listening/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +```