From cb3976d8a6bcf156d0c640d61cce8552dfe2125e Mon Sep 17 00:00:00 2001 From: anaz Date: Wed, 9 Oct 2024 18:58:19 +0530 Subject: [PATCH] fix(docs): correct spelling and grammar --- docs/reference/datatypes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/datatypes.md b/docs/reference/datatypes.md index e38e1ddc76..a440be657a 100644 --- a/docs/reference/datatypes.md +++ b/docs/reference/datatypes.md @@ -158,8 +158,8 @@ For MySQL, there is no native `uuid` data type. When using `UUID_TO_BIN` to stor ## JSON By default, sqlc will generate the `[]byte`, `pgtype.JSON` or `json.RawMessage` for JSON column type. -But if you use the `pgx/v5` sql package then you can specify a some struct instead of default type. -The `pgx` implementation will marshall/unmarshall the struct automatically. +But if you use the `pgx/v5` sql package then you can specify a struct instead of default type. +The `pgx` implementation will marshal/unmarshal the struct automatically. ```go package dto