Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 4, 2023
1 parent 7666d3a commit 6c992b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/re_log_types/src/data_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl DataCellColumn {
/// // eprintln!("{schema:#?}");
/// eprintln!("Wired chunk:\n{columns:#?}");
///
/// let table_out = DataTable::deserialize(table_id, &schema, &columns).unwrap();
/// let table_out = DataTable::deserialize(table_id, &schema, &columns, false).unwrap();
/// eprintln!("Table out:\n{table_out}");
/// #
/// # assert_eq!(table_in, table_out);
Expand Down Expand Up @@ -726,7 +726,7 @@ impl DataTable {
///
/// If `compute_cell_sizes` is enabled, this will estimate the size of the arrow data within
/// each cell and cache it there.
/// See [`DataCellInner::compute_size_bytes`] for more information.
/// See [`DataCell::compute_size_bytes`] for more information.
pub fn deserialize(
table_id: TableId,
schema: &Schema,
Expand Down Expand Up @@ -799,7 +799,7 @@ impl DataTable {
///
/// If `compute_cell_sizes` is enabled, this will estimate the size of the arrow data within
/// each cell and cache it there.
/// See [`DataCellInner::compute_size_bytes`] for more information.
/// See [`DataCell::compute_size_bytes`] for more information.
fn deserialize_data_column(
component: ComponentName,
column: &dyn Array,
Expand Down Expand Up @@ -832,7 +832,7 @@ impl DataTable {
///
/// If `compute_cell_sizes` is enabled, this will estimate the size of the arrow data within
/// each cell and cache it there.
/// See [`DataCellInner::compute_size_bytes`] for more information.
/// See [`DataCell::compute_size_bytes`] for more information.
#[inline]
pub fn from_arrow_msg(msg: &ArrowMsg, compute_cell_sizes: bool) -> DataTableResult<Self> {
let ArrowMsg {
Expand Down

0 comments on commit 6c992b4

Please sign in to comment.