Skip to content

Commit

Permalink
comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Nov 21, 2023
1 parent 2f41a6d commit cb476d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/rerun_c/src/rerun.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ typedef struct rr_data_cell {
/// The name of the component, e.g. `position`.
rr_string component_name;

/// A batch of components serialized into an arrow array.
/// A batch of instances of this component serialized into an arrow array.
ArrowArray array;

/// The schema used for the arrow array.
Expand Down
2 changes: 1 addition & 1 deletion rerun_cpp/src/rerun/c/rerun.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rerun_cpp/src/rerun/data_cell.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace rerun {
///
/// Note that the DataCell doesn't own `datatype` and `component_name`.
struct DataCell {
/// How many components were serialized in this data cell.
/// How many instances of the component were serialized in this data cell.
///
/// TODO(andreas): Just like in Rust, make this part of `AsComponents`.
/// This will requiring inlining some things on RecordingStream and have some refactor ripples.
Expand Down

0 comments on commit cb476d8

Please sign in to comment.