Community

This commit is contained in:
Teiva Harsanyi 2022-08-17 16:13:22 +02:00
parent 8337b5c9c4
commit 5061b6a94c
No known key found for this signature in database
GPG key ID: 421EF65C3FD2F93C

View file

@ -8,6 +8,8 @@ Source code and community space of [100 Go Mistakes and How to Avoid Them](https
## Go Mistakes
👐 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 mistakes list.
* [Code and Project Organization](#code-and-project-organization)
* [Data Types](#data-types)
* [Control Structures](#control-structures)
@ -22,8 +24,6 @@ Source code and community space of [100 Go Mistakes and How to Avoid Them](https
### 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)
Avoiding shadowed variables can help prevent mistakes like referencing the wrong variable or confusing readers.