golang-book icon indicating copy to clipboard operation
golang-book copied to clipboard

A book on Go, contains fundamentals but also recipes

Results 14 golang-book issues
Sort by recently updated
recently updated
newest added

- [ ] Copyedit - [ ] Add Image header - [ ] ...other stuff

- [ ] Copyedit - [ ] Add Image header - [ ] ...other stuff

- Typo observed at: https://softchris.github.io/golang-book/04-webdev/02-web-dev/ - Issue source: [04-web-dev/02-web-dev/README.md:370]( https://github.com/softchris/golang-book/blob/main/04-webdev/02-web-dev/README.md?plain=1#L370): `func handleRequest(w http.ResponseWrite, r *http.Request) {` - Issue resolution First param, `w http.ResponseWrite`, should instead be `w http.ResponseWriter`

Hi there, noticed a few typos while scanning through this doc. Thanks for writing it. Have a great day!

Spotted this while looking at https://softchris.github.io/golang-book/01-basics/05-loops/ 😉

Hi, You've got this code in the [Implement `Square`](https://github.com/softchris/golang-book/blob/main/02-data-types/04-interfaces/README.md#implement-square) section of your [Interfaces](https://github.com/softchris/golang-book/blob/main/02-data-types/04-interfaces/README.md) lesson: ```go type Square struct { side int } func (s Square) area() int { return s.square...

In the lesson on [Goroutines and channels](https://github.com/softchris/golang-book/blob/main/05-misc/04-goroutines/README.md), you say: > Concurrency is the task of running and managing the multiple computations at the same time. While parallelism is the task...