From 6ea8c8e6e82767da6b0da8d05849b1db531f080c Mon Sep 17 00:00:00 2001 From: Dane Harrigan <72265290+dane@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:54:02 -0400 Subject: [PATCH] Update comment from Good to Bad --- go/decisions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```