# Go Wiki: Go Code Review Comments

## Metadata
- Author: [[go.dev]]
- Full Title: Go Wiki: Go Code Review Comments
- Category: #articles
- Summary: Run gofmt and follow Go style rules to keep code consistent and clear.
Handle errors explicitly (use extra return values, early returns) and pass Contexts through call chains.
Keep concurrent code simple, name things clearly, and prefer short, meaningful identifiers.
- URL: https://go.dev/wiki/CodeReviewComments#dont-panic
## Highlights
- Don’t use panic for normal error handling. Use error and multiple return values. ([View Highlight](https://read.readwise.io/read/01kedxtc1mr58hnqfatw49tszs))