It might be useful to write a program to go through public Go repositories (both the main Go one but also, perhaps even more so, other public projects) and extract changes that, excluding modifications in comments and in *_test.go files, only amount to <= n lines. (A good starting value of n might be 2 or 3.) A significant fraction of such changes are likely to be simple bug fixes, and from looking at the bugs we might discover common mistakes worth checking in 'go vet'. Credit to Bill Pugh for the idea.