diff --git a/go/decisions.md b/go/decisions.md index 470868b8a..f49068541 100644 --- a/go/decisions.md +++ b/go/decisions.md @@ -391,7 +391,7 @@ If the value appears in multiple forms, this can be clarified either with an extra word like `raw` and `parsed` or with the underlying representation: ```go -// Good: +// Bad: limitStr := r.FormValue("limit") limit, err := strconv.Atoi(limitStr) ```