7 ms·
Are you specifically referring to method function receiver type annotations? Those are often left shorthand but shouldn't exist out of the type definition file
by classabove 3y ago
Are you specifically referring to method function receiver type annotations?
Those are often left shorthand but shouldn't exist out of the type definition file anyway eh?
- speedgoose 3y agoI’m referring to this guideline: > Variable names in Go should be short rather than long. This is especially true for local variables with limited scope. Prefer c to lineCount. Prefer i to sliceIndex. https://github.com/golang/go/wiki/CodeReviewComments#variable-names https://github.com/golang/go/wiki/CodeReviewComments#variabl...
- imtringued 3y agoOne of those is not like the other... lineCount is literally perfect meanwhile sliceIndex could be anything.
- deleted 3y ago[deleted]