1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-20 03:17:04 +00:00

fix some typos

Former-commit-id: 338c7421e2cd49f558cf09d194fe42c4db701be1
This commit is contained in:
kataras
2017-08-24 15:51:43 +03:00
parent 5ffc7911cd
commit 8f7b5752f8
4 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ func main() {
// same as app.Handle("GET", "/ping", [...])
// Method: GET
// Resource: http://context:8080/ping
// Resource: http://localhost:8080/ping
app.Get("/ping", func(ctx context.Context) {
ctx.WriteString("pong")
})