From 627dc87cadeec7f786e528f4f9ff89b88dbb1e9d Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 9 Oct 2016 08:43:40 +0530 Subject: [PATCH] Add missing type to TableAlignment* constants --- markdown.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown.go b/markdown.go index c539932..25a24c2 100644 --- a/markdown.go +++ b/markdown.go @@ -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) )