Fix a typo: lineMake -> lintMake

Signed-off-by: David Symonds <dsymonds@golang.org>
diff --git a/lint.go b/lint.go
index 7de99bc..672a067 100644
--- a/lint.go
+++ b/lint.go
@@ -1244,7 +1244,7 @@
 	})
 }
 
-// lineMake examines statements that declare and initialize a variable with make.
+// lintMake examines statements that declare and initialize a variable with make.
 // It complains if they are constructing a zero element slice.
 func (f *file) lintMake() {
 	f.walk(func(n ast.Node) bool {