From 7613c7fb1b0ae46ed2c69e34a4ca651694761a05 Mon Sep 17 00:00:00 2001 From: Michael Beutler <35310806+michaelbeutler@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:34:53 +0200 Subject: [PATCH] fixed json format and invalid property (#3459) --- docs/reference/datatypes.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/reference/datatypes.md b/docs/reference/datatypes.md index 7b9edf56e4..e38e1ddc76 100644 --- a/docs/reference/datatypes.md +++ b/docs/reference/datatypes.md @@ -309,12 +309,12 @@ SELECT * FROM shapes; { "db_type": "geometry", "go_type": "github.com/twpayne/go-geom.MultiPolygon" - }, - { + }, + { "db_type": "geometry", - "go_type": "github.com/twpayne/go-geom.MultiPolygon", - "null": true - } + "go_type": "github.com/twpayne/go-geom.MultiPolygon", + "nullable": true + } ] } ```