File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/claimantmodel/experimental/cmd/render/internal Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments