Skip to content

Commit 14ca3e0

Browse files
committed
lint
1 parent ba53170 commit 14ca3e0

File tree

1 file changed

+3
-3
lines changed
  • docs/claimantmodel/experimental/cmd/render/internal

1 file changed

+3
-3
lines changed

docs/claimantmodel/experimental/cmd/render/internal/model.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ var (
3030
//go:embed tmpl_model.md
3131
TemplateModelMarkdown []byte
3232

33-
// TemplateQuestions is the markdown template for a model questionnaire.
33+
// TemplateQuestionsMarkdown is the markdown template for a model questionnaire.
3434
//go:embed tmpl_questions.md
3535
TemplateQuestionsMarkdown []byte
3636

37-
// TemplateSequence is the markdown template for the sequence diagram.
37+
// TemplateSequenceMarkdown is the markdown template for the sequence diagram.
3838
//go:embed tmpl_sequence.md
3939
TemplateSequenceMarkdown []byte
4040
)
@@ -241,7 +241,7 @@ func (ms Models) Actors() []string {
241241
}
242242
}
243243
r := make([]string, 0, len(am))
244-
for actor, _ := range am {
244+
for actor := range am {
245245
if len(actor) > 0 {
246246
r = append(r, actor)
247247
}

0 commit comments

Comments
 (0)