(kind string, actual, reported int64)
| 150 | } |
| 151 | |
| 152 | func lineCountErr(kind string, actual, reported int64) error { |
| 153 | return fmt.Errorf("fragment contains %d %s lines but reports %d", actual, kind, reported) |
| 154 | } |
| 155 | |
| 156 | // Line is a line in a text fragment. |
| 157 | type Line struct { |