From cf39e57b04a3fa69639e570a9208c37591ac1c0a Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Thu, 15 Aug 2019 10:52:33 +0300 Subject: [PATCH] version --- Installation.md | 4 ++-- Routing-error-handlers.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Installation.md b/Installation.md index a35210d..888acf4 100644 --- a/Installation.md +++ b/Installation.md @@ -3,7 +3,7 @@ Iris is a cross-platform software. The only requirement is the [Go Programming Language](https://golang.org/dl/), version 1.12 and above. ```sh -$ go get github.com/kataras/iris@v11.2.6 +$ go get github.com/kataras/iris@v11.2.7 ``` Or inside your `go.mod` file: @@ -14,7 +14,7 @@ module your_project_name go 1.12 require ( - github.com/kataras/iris v11.2.6 + github.com/kataras/iris v11.2.7 ) ``` diff --git a/Routing-error-handlers.md b/Routing-error-handlers.md index bae522c..3afa691 100644 --- a/Routing-error-handlers.md +++ b/Routing-error-handlers.md @@ -67,7 +67,7 @@ func newProductProblem(productName, detail string) iris.Problem { func fireProblem(ctx iris.Context) { // Response like JSON but with indent of " " and // content type of "application/problem+json" - ctx.Problem(newProductProblem("product name", "problem error details"), iris.ProblemOptions{ + ctx.Problem(newProductProblem("product name", "problem details"), iris.ProblemOptions{ // Optional JSON renderer settings. JSON: iris.JSON{ Indent: " ",