From 999affe0bc5b948a55dd16b89ac5d3d44a03a423 Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Fri, 9 Sep 2016 08:42:03 +0300 Subject: [PATCH 1/3] Functional Options: Create a relative package, set the link --- idiom/functional-options.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/idiom/functional-options.md b/idiom/functional-options.md index 1e95086..4c4e677 100644 --- a/idiom/functional-options.md +++ b/idiom/functional-options.md @@ -92,3 +92,9 @@ if err != nil { panic(err) } ``` + +## Packages + +Packages helps you understand how this pattern works: + +- [go-options](https://github.com/kataras/go-options) From 6d58bd9922725628bf5a587461cd17a580e59aec Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Fri, 9 Sep 2016 08:50:18 +0300 Subject: [PATCH 2/3] Set flow of iris --- idiom/functional-options.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/idiom/functional-options.md b/idiom/functional-options.md index 4c4e677..a9331ed 100644 --- a/idiom/functional-options.md +++ b/idiom/functional-options.md @@ -93,8 +93,9 @@ if err != nil { } ``` -## Packages +## Relative -Packages helps you understand how this pattern works: +Relative links and source codeview that helps you understand how this pattern works and can be extended to fit your needs: - [go-options](https://github.com/kataras/go-options) +- [configuration.go:26](https://github.com/kataras/iris/blob/master/configuration.go#L26), [configuration.go:160](https://github.com/kataras/iris/blob/master/configuration.go#L160), [iris.go:202](https://github.com/kataras/iris/blob/master/iris.go#L202) From dda5c536d55367f7a3b35d46b8bb1d21f72c97c7 Mon Sep 17 00:00:00 2001 From: Gerasimos Maropoulos Date: Fri, 9 Sep 2016 08:52:41 +0300 Subject: [PATCH 3/3] Update functional-options.md --- idiom/functional-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idiom/functional-options.md b/idiom/functional-options.md index a9331ed..77a7ebc 100644 --- a/idiom/functional-options.md +++ b/idiom/functional-options.md @@ -98,4 +98,4 @@ if err != nil { Relative links and source codeview that helps you understand how this pattern works and can be extended to fit your needs: - [go-options](https://github.com/kataras/go-options) -- [configuration.go:26](https://github.com/kataras/iris/blob/master/configuration.go#L26), [configuration.go:160](https://github.com/kataras/iris/blob/master/configuration.go#L160), [iris.go:202](https://github.com/kataras/iris/blob/master/iris.go#L202) +- A web framework's flow: [configuration.go:26](https://github.com/kataras/iris/blob/master/configuration.go#L26), [configuration.go:160](https://github.com/kataras/iris/blob/master/configuration.go#L160), [iris.go:202](https://github.com/kataras/iris/blob/master/iris.go#L202), [iris.go:259](https://github.com/kataras/iris/blob/master/iris.go#L259)