From 48577b7ff10cd3c25ce94cc3f783074c82ee89c3 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Thu, 6 Jan 2022 18:49:11 +0200 Subject: [PATCH] minor --- FAQ.md | 8 ++++---- LICENSE | 2 +- README.md | 2 +- README_FA.md | 2 +- README_GR.md | 2 +- README_ZH.md | 2 +- _examples/routing/dynamic-path/main.go | 2 +- doc.go | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/FAQ.md b/FAQ.md index 3703c32a..776047fa 100644 --- a/FAQ.md +++ b/FAQ.md @@ -28,11 +28,11 @@ Go version 1.13 and above is required. More than 180 practical examples, tutorials and articles at: -- https://iris-go.com/start -- https://bit.ly/iris-req-book +- https://www.iris-go.com/docs +- https://www.iris-go.com/#ebookDonateForm - https://github.com/kataras/iris/wiki/Starter-kits - https://github.com/kataras/iris/tree/master/_examples -- https://godoc.org/github.com/kataras/iris +- https://pkg.go.dev/github.com/kataras/iris/v12@master ## Active development mode @@ -53,4 +53,4 @@ Yes, https://chat.iris-go.com By people like you, who help us by donating small or large amounts of money. -Help this project deliver awesome and unique features with the highest possible code quality by donating any amount via [PayPal](https://iris-go.com/donate). Your name will be published [here](https://iris-go.com) after your approval via e-mail. +Help this project deliver awesome and unique features with the highest possible code quality by donating any amount via [PayPal or Stripe](https://iris-go.com/donate). Your name will be published [here](https://www.iris-go.com/#review) after your approval via e-mail. diff --git a/LICENSE b/LICENSE index 58e73253..1bc2959b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2017-2021 The Iris Authors. All rights reserved. +Copyright (c) 2017-2022 The Iris Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/README.md b/README.md index 126106d4..1a231232 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ Iris contains extensive and thorough **[documentation](https://www.iris-go.com/d -For a more detailed technical documentation you can head over to our [godocs](https://godoc.org/github.com/kataras/iris). And for executable code you can always visit the [./_examples](_examples) repository's subdirectory. +For a more detailed technical documentation you can head over to our [godocs](https://pkg.go.dev/github.com/kataras/iris/v12@master). And for executable code you can always visit the [./_examples](_examples) repository's subdirectory. ### Do you like to read while traveling? diff --git a/README_FA.md b/README_FA.md index 7921e285..39fdcca1 100644 --- a/README_FA.md +++ b/README_FA.md @@ -274,7 +274,7 @@ require github.com/kataras/iris/v12 master برای اطلاعات بیشتر در مورد اسناد فنی می توانید به مستندات اصلی ما مراجعه کنید. -> [مستندات اصلی](https://godoc.org/github.com/kataras/iris) +> [مستندات اصلی](https://pkg.go.dev/github.com/kataras/iris/v12@master) ## دوست دارید در حین مسافرت کتاب بخوانید ? diff --git a/README_GR.md b/README_GR.md index e7c54f57..f06aa118 100644 --- a/README_GR.md +++ b/README_GR.md @@ -59,7 +59,7 @@ $ go run example.go Μπορείτε να [ζητήσετε](https://www.iris-go.com/#ebookDonateForm) σήμερα την PDF έκδοση και την online πρόσβαση στο Ηλεκτρονικό μας **Βιβλίο(E-Book)** και να συμμετάσχετε στην ανάπτυξη του Iris. -[![https://iris-go.com/images/iris-book-cover-sm.jpg](https://iris-go.com/images/iris-book-cover-sm.jpg)](https://bit.ly/iris-req-book) +[![https://iris-go.com/images/iris-book-cover-sm.jpg](https://iris-go.com/images/iris-book-cover-sm.jpg)](https://www.iris-go.com/#ebookDonateForm) [![follow author](https://img.shields.io/twitter/follow/makismaropoulos.svg?style=for-the-badge)](https://twitter.com/intent/follow?screen_name=makismaropoulos) diff --git a/README_ZH.md b/README_ZH.md index d61c030b..8c4b46f1 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -185,7 +185,7 @@ Iris 有完整且详尽的 **[使用文档](https://github.com/kataras/iris/wiki -要了解更详细的技术文档,请访问我们的 [godocs](https://godoc.org/github.com/kataras/iris)。如果想要寻找代码示例,您可以到仓库的 [./_examples](_examples) 子目录下获取。 +要了解更详细的技术文档,请访问我们的 [godocs](https://pkg.go.dev/github.com/kataras/iris/v12@master)。如果想要寻找代码示例,您可以到仓库的 [./_examples](_examples) 子目录下获取。 ### 你喜欢在旅行时阅读吗? diff --git a/_examples/routing/dynamic-path/main.go b/_examples/routing/dynamic-path/main.go index 1abde327..e3571d33 100644 --- a/_examples/routing/dynamic-path/main.go +++ b/_examples/routing/dynamic-path/main.go @@ -176,7 +176,7 @@ func main() { // | {param:email} | // +------------------------+ // Email + mx look uppath parameter validation. - // Note that, you can also use the simplier ":mail" to accept any domain email. + // Note that, you can also use the simpler ":mail" to accept any domain email. // http://localhost:8080/user/email/kataras2006@hotmail.com -> OK // http://localhost:8080/user/email/b-c@ -> NOT FOUND diff --git a/doc.go b/doc.go index db3ee4b9..b755c736 100644 --- a/doc.go +++ b/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2020 The Iris Authors. All rights reserved. +// Copyright (c) 2017-2022 The Iris Authors. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are