Skip to content

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Oct 16, 2023
1 parent fc17399 commit 314e36e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/re_format/src/arrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ where
.map(|(name, data_type)| {
Cell::new(format!(
"{}\n---\n{}",
name.replace("rerun.archetypes.", "")
.replace("rerun.components.", "")
.replace("rerun.datatypes.", "")
.replace("rerun.controls.", "")
.replace("rerun.", ""),
name.trim_start_matches("rerun.archetypes.")
.trim_start_matches("rerun.components.")
.trim_start_matches("rerun.datatypes.")
.trim_start_matches("rerun.controls.")
.trim_start_matches("rerun."),
DisplayDataType(data_type.clone())
))
});
Expand Down

0 comments on commit 314e36e

Please sign in to comment.