Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutchinson committed Apr 22, 2023
1 parent b47b021 commit 19731b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/claimantmodel/experimental/cmd/render/internal/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ var (
//go:embed tmpl_model.md
TemplateModelMarkdown []byte

// TemplateQuestions is the markdown template for a model questionnaire.
// TemplateQuestionsMarkdown is the markdown template for a model questionnaire.
//go:embed tmpl_questions.md
TemplateQuestionsMarkdown []byte

// TemplateSequence is the markdown template for the sequence diagram.
// TemplateSequenceMarkdown is the markdown template for the sequence diagram.
//go:embed tmpl_sequence.md
TemplateSequenceMarkdown []byte
)
Expand Down Expand Up @@ -241,7 +241,7 @@ func (ms Models) Actors() []string {
}
}
r := make([]string, 0, len(am))
for actor, _ := range am {
for actor := range am {
if len(actor) > 0 {
r = append(r, actor)
}
Expand Down

0 comments on commit 19731b7

Please sign in to comment.