From 1c65e7b33650b0ad74058788a04cc282fe9eab6c Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 18 Nov 2022 15:25:05 -0800 Subject: [PATCH] Revert c7f4b46df55feb4e9afdec1e19b20030b1cee4bf...d21cfeb3597281b224200e239a18f30c60672595 on CodeReviewComments --- CodeReviewComments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeReviewComments.md b/CodeReviewComments.md index 5623c6f1..58a11756 100644 --- a/CodeReviewComments.md +++ b/CodeReviewComments.md @@ -457,7 +457,7 @@ is less clear than: ```go // Location returns f's latitude and longitude. // Negative values mean south and west, respectively. -func (f *Foo) Location() (lat float64, long float64, err error) +func (f *Foo) Location() (lat, long float64, err error) ``` Naked returns are okay if the function is a handful of lines. Once it's a medium