1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

Merge pull request #1337 from Ibuki-Suika/patch-1

Fixed typo in comment

Former-commit-id: becc3be2c6a7aac1c1182b2d571afc5363b53f15
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-08-15 10:50:46 +03:00
committed by GitHub

View File

@@ -410,7 +410,7 @@ type Context interface {
URLParam(name string) string
// URLParamTrim returns the url query parameter with trailing white spaces removed from a request.
URLParamTrim(name string) string
// URLParamTrim returns the escaped url query parameter from a request.
// URLParamEscape returns the escaped url query parameter from a request.
URLParamEscape(name string) string
// URLParamInt returns the url query parameter as int value from a request,
// returns -1 and an error if parse failed.