Documentation of an exported function should start with the function’s name GO-D5001
Documentation
Minor
2 occurrences in this check
comment on exported method CodeName should be of the form "CodeName ..."
62	return fmt.Sprintf("%s-%s-%s", adjective, noun, ptype)
63}
64
65// Name returns a music name for a project66func (f Project) CodeName() string {
67	var (
68		adjective = f.Faker.RandomStringElement(projectAdjectives)
comment on exported method RepositoryName should be of the form "RepositoryName ..."
52	Faker *Faker
53}
54
55// Name returns a music name for a project56func (f Project) RepositoryName() string {
57	var (
58		adjective = f.Faker.RandomStringElement(projectAdjectives)