Skip to content

Commit b12439a

Browse files
committed
oops
1 parent 0e69168 commit b12439a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/_macros.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ macro_rules! build_table_column_slice_getter {
10161016
($(#[$attr:meta])* => $column: ident, $name: ident, $cast: ty) => {
10171017
$(#[$attr])*
10181018
pub fn $name(&self) -> &[$cast] {
1019-
crate::sys::generate_slice(self.as_ref().$column, self.num_rows())
1019+
$crate::sys::generate_slice(self.as_ref().$column, self.num_rows())
10201020
}
10211021
};
10221022
}
@@ -1025,7 +1025,7 @@ macro_rules! build_table_column_slice_mut_getter {
10251025
($(#[$attr:meta])* => $column: ident, $name: ident, $cast: ty) => {
10261026
$(#[$attr])*
10271027
pub fn $name(&mut self) -> &mut [$cast] {
1028-
crate::sys::generate_slice_mut(self.as_ref().$column, self.num_rows())
1028+
$crate::sys::generate_slice_mut(self.as_ref().$column, self.num_rows())
10291029
}
10301030
};
10311031
}

0 commit comments

Comments
 (0)