Skip to content

Commit b19550e

Browse files
fix(docs): Remove multidimensional array qualification in datatypes.md (sqlc-dev#2619)
* docs: Reword phrase about pgx and multidimensional arrays * fix(docs): Remove multidimensional array qualification in datatypes.md --------- Co-authored-by: Andrew Benton <andrew@sqlc.dev>
1 parent 8c59fbb commit b19550e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/datatypes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you're unsatisfied with the default, you can override any type using the
99
## Arrays
1010

1111
PostgreSQL [arrays](https://www.postgresql.org/docs/current/arrays.html) are
12-
materialized as Go slices. Currently, the `pgx/v5` sql package only supports multidimensional arrays.
12+
materialized as Go slices.
1313

1414
```sql
1515
CREATE TABLE places (
@@ -92,7 +92,7 @@ type Store struct {
9292
## Null
9393

9494
For structs, null values are represented using the appropriate type from the
95-
`database/sql` or `pgx` package.
95+
`database/sql` or `pgx` package.
9696

9797
```sql
9898
CREATE TABLE authors (

0 commit comments

Comments
 (0)