From 9b1f1373dac53b55ac1a5a44c178b129028a95a9 Mon Sep 17 00:00:00 2001 From: Anastasiia Kruglikova Date: Fri, 10 Nov 2017 11:07:39 +0200 Subject: [PATCH 1/3] Useful links added --- go.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/go.md b/go.md index 5750fab0b..b97b4855f 100644 --- a/go.md +++ b/go.md @@ -504,3 +504,8 @@ See: [Pointer receivers](https://tour.golang.org/methods/4) - [A tour of Go](https://tour.golang.org/welcome/1) _(tour.golang.org)_ - [Golang wiki](https://github.com/golang/go/wiki/) _(github.com)_ +- [Awesome Go](https://awesome-go.com/) _(awesome-go.com)_ +- [Go by Example](https://gobyexample.com/) _(gobyexample.com)_ +- [Effective Go](https://golang.org/doc/effective_go.html) _(golang.org/doc/effective_go.html)_ +- [JustForFunc Youtube](https://www.youtube.com/channel/UC_BzFbxG2za3bp5NRRRXJSw) _(youtube.com)_ +- [Style Guide](https://github.com/golang/go/wiki/CodeReviewComments) _(github.com/golang/go/wiki/CodeReviewComments)_ From b97f2e98015737afc0448228658515210cb47df7 Mon Sep 17 00:00:00 2001 From: Nastya Kruglikova Date: Fri, 10 Nov 2017 11:39:00 +0200 Subject: [PATCH 2/3] fix code formatting --- go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.md b/go.md index b97b4855f..e49d707b1 100644 --- a/go.md +++ b/go.md @@ -26,7 +26,7 @@ func main() { fmt.Println(message) } -func greetMe(name string) (string) { +func greetMe(name string) string { return "Hello, " + name + "!" } ``` From 6ba7fa71536e97002ee4079d8babe89a1d35b8eb Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Thu, 16 Nov 2017 00:03:14 +0800 Subject: [PATCH 3/3] go: don't make the references domain listing too verbose --- go.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go.md b/go.md index e49d707b1..13e728618 100644 --- a/go.md +++ b/go.md @@ -506,6 +506,6 @@ See: [Pointer receivers](https://tour.golang.org/methods/4) - [Golang wiki](https://github.com/golang/go/wiki/) _(github.com)_ - [Awesome Go](https://awesome-go.com/) _(awesome-go.com)_ - [Go by Example](https://gobyexample.com/) _(gobyexample.com)_ -- [Effective Go](https://golang.org/doc/effective_go.html) _(golang.org/doc/effective_go.html)_ +- [Effective Go](https://golang.org/doc/effective_go.html) _(golang.org)_ - [JustForFunc Youtube](https://www.youtube.com/channel/UC_BzFbxG2za3bp5NRRRXJSw) _(youtube.com)_ -- [Style Guide](https://github.com/golang/go/wiki/CodeReviewComments) _(github.com/golang/go/wiki/CodeReviewComments)_ +- [Style Guide](https://github.com/golang/go/wiki/CodeReviewComments) _(github.com)_