Skip to content

Commit 1d12841

Browse files
committed
wip
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 6c7083f commit 1d12841

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vortex-vector/src/datum.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ impl Datum {
143143
}
144144
}
145145

146+
/// Converts the `Datum` into a `TypedDatum`.
146147
pub fn into_typed(self) -> TypedDatum {
147148
match self {
148149
Datum::Scalar(sc) => match sc {
@@ -269,7 +270,7 @@ datum!(FixedSizeList);
269270
datum!(Struct);
270271

271272
impl PrimitiveDatum {
272-
// ptype from datum
273+
/// ptype from datum
273274
pub fn ptype(&self) -> PType {
274275
match self {
275276
PrimitiveDatum::Scalar(sc) => sc.ptype(),

0 commit comments

Comments
 (0)