String converts the issues to a suitable display string.
()
| 1112 | |
| 1113 | // String converts the issues to a suitable display string. |
| 1114 | func (i *Issues) String() string { |
| 1115 | if i == nil { |
| 1116 | return "" |
| 1117 | } |
| 1118 | return i.errs.ToDisplayString() |
| 1119 | } |
| 1120 | |
| 1121 | // ReportErrorAtID reports an error message with an optional set of formatting arguments. |
| 1122 | // |