Go

Go

Made by DeepSource

Incorrect or missing package comment SCC-ST1000

Style
Minor

Package comments, like all comments to be presented by godoc, must appear adjacent to the package clause, with no blank line.

Example :

// Package math provides basic constants and mathematical functions.
package math

/*
Package template implements data-driven templates for generating textual
output such as HTML.
....
*/
package template

These are examples, and sensible variants of these are acceptable.

Note that starting the sentence with a lower-case word is not among the acceptable options for package comments, as these are publicly-visible and should be written in proper English, including capitalizing the first word of the sentence.

When the binary name is the first word, capitalizing it is required even though it does not strictly match the spelling of the command-line invocation.