(ctx context.Context, o *options.Options, args []string)
| 20 | } |
| 21 | |
| 22 | func (p *Parser) applyHeightOption(ctx context.Context, o *options.Options, args []string) error { |
| 23 | return p.parsePositiveInt(ctx, o, keys.Height, args...) |
| 24 | } |
| 25 | |
| 26 | func (p *Parser) applyMinWidthOption(ctx context.Context, o *options.Options, args []string) error { |
| 27 | return p.parsePositiveInt(ctx, o, keys.MinWidth, args...) |
no test coverage detected