formatLinkedIssueRefs formats a comma-separated list of linked issue references without titles.
(issues []api.LinkedIssue)
| 365 | // formatLinkedIssueRefs formats a comma-separated list of linked issue |
| 366 | // references without titles. |
| 367 | func formatLinkedIssueRefs(issues []api.LinkedIssue) string { |
| 368 | return joinLinkedIssues(issues, false) |
| 369 | } |
| 370 | |
| 371 | // formatLinkedIssueListWithTitle formats a comma-separated list of linked |
| 372 | // issue references with each title appended after the reference. |
no test coverage detected