Merge pull request #314 from Ambrevar/v2consttype

v2: Add missing type to TableAlignment* constants
This commit is contained in:
Vytautas Šaltenis 2016-10-09 10:26:09 +03:00 committed by GitHub
commit 52676fb005

View File

@ -86,7 +86,7 @@ type CellAlignFlags int
// Only a single one of these values will be used; they are not ORed together.
// These are mostly of interest if you are writing a new output format.
const (
TableAlignmentLeft = 1 << iota
TableAlignmentLeft CellAlignFlags = 1 << iota
TableAlignmentRight
TableAlignmentCenter = (TableAlignmentLeft | TableAlignmentRight)
)