minor: correct comments
Vladimir Bauer
2 years ago
| 8 | 8 | |
| 9 | 9 | const ( |
| 10 | 10 | // DidentRight bit specifies identation direction. |
| 11 | // |foo |b | With DidentRight | |
| 12 | // | foo| b| Without DidentRight | |
| 11 | // | |
| 12 | // |foo |b | With DidentRight | |
| 13 | // | foo| b| Without DidentRight | |
| 13 | 14 | DidentRight = 1 << iota |
| 14 | 15 | |
| 15 | 16 | // DextraSpace bit adds extra space, makes sense with DSyncWidth only. |
| 70 | 71 | } |
| 71 | 72 | |
| 72 | 73 | // DecorFunc func type. |
| 73 | // To be used with `func Any`(DecorFunc, ...WC) Decorator`. | |
| 74 | // To be used with `func Any(DecorFunc, ...WC) Decorator`. | |
| 74 | 75 | type DecorFunc func(Statistics) string |
| 75 | 76 | |
| 76 | 77 | // Synchronizer interface. |