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