gPanel icon indicating copy to clipboard operation
gPanel copied to clipboard

Remove multiple package comments

Open george-e-shaw-iv opened this issue 7 years ago • 0 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

Personal Comments:

george-e-shaw-iv avatar Nov 28 '17 22:11 george-e-shaw-iv