Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jan 23, 2025
1 parent 5555e96 commit ad4c3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/snippets/all/howto/any_batch_value_send_columns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {

let ten_per_timestamp = rerun::SerializedComponentBatch::new(
Arc::new(arrow::array::Float64Array::from_iter((0..STEPS).flat_map(
|_| (0..STEPS * 10).map(|v| ((v as f64) / 10.0).cos() / 100.0),
|_| (0..STEPS * 10).map(|v| ((v as f64) / 100.0).cos()),
))),
rerun::ComponentDescriptor::new("custom_component_multi"),
);
Expand Down

0 comments on commit ad4c3db

Please sign in to comment.