Skip to content

Commit 4433cde

Browse files
committed
cr comments
1 parent 211cf8d commit 4433cde

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

accepted/0015-variant-type.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ enum Variant {
2323
}
2424
```
2525

26-
Here the semantic `null` value inside the variant payload is represented as
26+
Here `variantnull` value inside the variant payload is represented as
2727
`Scalar::null(DType::Null)`. That is distinct from the outer nullability of the
2828
`Variant` dtype itself.
2929

@@ -49,7 +49,7 @@ does **not** guarantee that extracted paths will be non-null.
4949
This is distinct from the semantic null value inside the variant payload, which I'll call
5050
`variantnull`. A `variantnull` is a present variant value whose payload is
5151
`null`, while an outer null is the absence of the variant value itself.
52-
In scalar form this is the difference between `Scalar::null(DType::Variant(Nullability::Nullable))`gst
52+
In scalar form this is the difference between `Scalar::null(DType::Variant(Nullability::Nullable))`
5353
and `Scalar::variant(Scalar::null(DType::Null))`.
5454

5555
Typed extraction from a variant should therefore still return nullable arrays even when the source

0 commit comments

Comments
 (0)