String converts the issues to a suitable display string.
()
| 1058 | |
| 1059 | // String converts the issues to a suitable display string. |
| 1060 | func (i *Issues) String() string { |
| 1061 | if i == nil { |
| 1062 | return "" |
| 1063 | } |
| 1064 | return i.errs.ToDisplayString() |
| 1065 | } |
| 1066 | |
| 1067 | // ReportErrorAtID reports an error message with an optional set of formatting arguments. |
| 1068 | // |