(param, format string, args ...any)
| 14 | } |
| 15 | |
| 16 | func markdownValidationParamError(param, format string, args ...any) *errs.ValidationError { |
| 17 | return markdownValidationError(format, args...).WithParam(param) |
| 18 | } |
| 19 | |
| 20 | func markdownInvalidParam(name, reason string) errs.InvalidParam { |
| 21 | return errs.InvalidParam{Name: name, Reason: reason} |
no test coverage detected