Skip to content

Commit 07ea496

Browse files
authored
docs: fix DType docs (#3572)
1 parent ad96a7e commit 07ea496

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/concepts/dtypes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ The following table lists the built-in dtypes in Vortex, each of which can be ma
3333
| `Null` | `null` |
3434
| `Bool` | `true`, `false` |
3535
| `Primitive` | See [Primitive](#primitive) |
36-
| `UTF8` | Variable length valid utf-8 encoded strings |
36+
| `UTF8` | Variable length valid UTF-8 encoded strings |
3737
| `Binary` | Arbitrary variable length bytes |
3838
| `Struct` | See [Struct](#struct) |
3939
| `List` | See [List](#list) |
4040
| `Extension` | See [Extension](#extension) |
4141

4242
:::{note}
43-
There are additional logical types that Vortex does not yet support, for example fixed-length binary, utf-8, and list
43+
There are additional logical types that Vortex does not yet support, for example fixed-length binary and list
4444
types, as well as a map type. These may be added in future versions.
4545
:::
4646

@@ -92,4 +92,4 @@ This section helps those familiar with Apache Arrow to quickly understand the di
9292
dtypes since that can be composed of other more primitive logical dtypes.
9393
* In Arrow, tables and record batches have a _schema_ that defines the types of the columns. Vortex makes no
9494
distinction between a data type and a schema. Columnar data can be stored with a struct dtype, and integer data can
95-
be stored equally well without a top-level struct.
95+
be stored equally well without a top-level struct.

0 commit comments

Comments
 (0)