mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-25 19:06:58 +08:00
Community
This commit is contained in:
parent
8bb05428de
commit
8337b5c9c4
1 changed files with 3 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
Source code and community space of [100 Go Mistakes and How to Avoid Them](https://www.manning.com/books/100-go-mistakes-and-how-to-avoid-them) published by Manning in October 2022 ([about the book](https://github.com/teivah/100-go-mistakes/blob/master/about.md)).
|
Source code and community space of [100 Go Mistakes and How to Avoid Them](https://www.manning.com/books/100-go-mistakes-and-how-to-avoid-them) published by Manning in October 2022 ([about the book](https://github.com/teivah/100-go-mistakes/blob/master/about.md)).
|
||||||
|
|
||||||
**Note:** If you're struggling to afford the book, please DM me [@teivah](https://twitter.com/teivah).
|
ℹ️ If you're struggling to afford the book, please DM me [@teivah](https://twitter.com/teivah).
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
@ -22,6 +22,8 @@ Source code and community space of [100 Go Mistakes and How to Avoid Them](https
|
||||||
|
|
||||||
### Code and Project Organization
|
### Code and Project Organization
|
||||||
|
|
||||||
|
👐 This section contains the 100 mistakes in the book. However, it's also a section open to the community. If you believe that a mistake should be added, please create a [community mistake issue](https://github.com/teivah/100-go-mistakes/issues/new?assignees=&labels=community+mistake&template=community_mistake.md&title=). You can check the community propositions [here](https://github.com/teivah/100-go-mistakes/issues?q=is%3Aopen+is%3Aissue+label%3A%22community+mistake%22) and vote using the 👍 or the 👎 reaction on the issue itself. If an issue reaches a significant ratio, it will be added to the list below.
|
||||||
|
|
||||||
#### Unintended variable shadowing (#1)
|
#### Unintended variable shadowing (#1)
|
||||||
|
|
||||||
Avoiding shadowed variables can help prevent mistakes like referencing the wrong variable or confusing readers.
|
Avoiding shadowed variables can help prevent mistakes like referencing the wrong variable or confusing readers.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue