From 5545ade9a751aacfe6f9a5a72b0e07fae319b938 Mon Sep 17 00:00:00 2001 From: David Stotijn Date: Sat, 3 Sep 2022 20:53:05 +0200 Subject: [PATCH] Fix type of `column_list.children` (#38) --- block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block.go b/block.go index f999f71..325baa0 100644 --- a/block.go +++ b/block.go @@ -570,7 +570,7 @@ func (b EquationBlock) MarshalJSON() ([]byte, error) { type ColumnListBlock struct { baseBlock - Children []Block `json:"children,omitempty"` + Children []ColumnBlock `json:"children,omitempty"` } // MarshalJSON implements json.Marshaler.