(prefix string, defs Defs, order []section)
| 145 | } |
| 146 | |
| 147 | func (h *Header) makeDefinedDocs(prefix string, defs Defs, order []section) string { |
| 148 | var buf bytes.Buffer |
| 149 | |
| 150 | for _, section := range order { |
| 151 | buf.WriteString(createDefinedSection(defs[section], h, section).makeDocs(prefix, section)) |
| 152 | } |
| 153 | |
| 154 | return buf.String() |
| 155 | } |
no test coverage detected