gPanel
gPanel copied to clipboard
Remove multiple package comments
Severity level (1-10):
1
Files/Directories Involved:
pkg/*
Description:
I had a misunderstanding with how the godoc works and I accidentally commented on every file within each package right above the package name, where I should have only commented on the package name within the main file of the package.
Example..
pkg/file/file.go
// Package file handles various file operations
package file
pkg/file/dircopy.go
// Package file handles various file operations
package file
Should just be...
pkg/file/file.go
// Package file handles various file operations
package file
pkg/file/dircopy.go
package file