(w io.Writer, prs []string, r *lipgloss.Renderer)
| 463 | } |
| 464 | |
| 465 | func printPRs(w io.Writer, prs []string, r *lipgloss.Renderer) { |
| 466 | if len(prs) > 0 { |
| 467 | fmt.Fprintf(w, "%s %s\n", formatLabel("PRs:", r), strings.Join(prs, ", ")) |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | func printDescription(w io.Writer, body string, r *lipgloss.Renderer, raw bool) { |
| 472 | if body == "" { |
no test coverage detected