String converts the issues to a suitable display string.
()
| 1022 | |
| 1023 | // String converts the issues to a suitable display string. |
| 1024 | func (i *Issues) String() string { |
| 1025 | if i == nil { |
| 1026 | return "" |
| 1027 | } |
| 1028 | return i.errs.ToDisplayString() |
| 1029 | } |
| 1030 | |
| 1031 | // ReportErrorAtID reports an error message with an optional set of formatting arguments. |
| 1032 | // |