diff --git a/decor/decorator.go b/decor/decorator.go index dc0e9f8..f537d3f 100644 --- a/decor/decorator.go +++ b/decor/decorator.go @@ -9,8 +9,9 @@ const ( // DidentRight bit specifies identation direction. - // |foo |b | With DidentRight - // | foo| b| Without DidentRight + // + // |foo |b | With DidentRight + // | foo| b| Without DidentRight DidentRight = 1 << iota // DextraSpace bit adds extra space, makes sense with DSyncWidth only. @@ -71,7 +72,7 @@ } // DecorFunc func type. -// To be used with `func Any`(DecorFunc, ...WC) Decorator`. +// To be used with `func Any(DecorFunc, ...WC) Decorator`. type DecorFunc func(Statistics) string // Synchronizer interface.