(name string, indent int)
| 77 | } |
| 78 | |
| 79 | func (w *specWriter) writeFlag(name string, indent int) { |
| 80 | if name == "" { |
| 81 | return |
| 82 | } |
| 83 | |
| 84 | w.out.WriteString(pad(indent) + "# CLI flag: -" + name + "\n") |
| 85 | } |
| 86 | |
| 87 | func (w *specWriter) writeComment(comment string, indent int) { |
| 88 | if comment == "" { |
no test coverage detected