Skip to content

Commit

Permalink
doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Jul 11, 2023
1 parent 0956f60 commit 26649ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions crates/re_space_view_spatial/src/parts/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ pub const SIZE_BOOST_IN_POINTS_FOR_POINT_OUTLINES: f32 = 2.5;

#[derive(Default)]
pub struct SpatialViewPartSystemCollection {
pub points2d: points2d::Points2DPart,
pub points3d: points3d::Points3DPart,
pub arrows3d: arrows3d::Arrows3DPart,
pub boxes2d: boxes2d::Boxes2DPart,
pub boxes3d: boxes3d::Boxes3DPart,
points2d: points2d::Points2DPart,
points3d: points3d::Points3DPart,
arrows3d: arrows3d::Arrows3DPart,
boxes2d: boxes2d::Boxes2DPart,
boxes3d: boxes3d::Boxes3DPart,
pub cameras: cameras::CamerasPart,
pub lines2d: lines2d::Lines2DPart,
pub lines3d: lines3d::Lines3DPart,
pub meshes: meshes::MeshPart,
lines2d: lines2d::Lines2DPart,
lines3d: lines3d::Lines3DPart,
meshes: meshes::MeshPart,
pub images: images::ImagesPart,
}

Expand Down
2 changes: 1 addition & 1 deletion crates/re_viewer_context/src/space_view/view_query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl<'s> ViewQuery<'s> {
}
}

/// Iter over all of the currently visible [`EntityPath`]s in the [`SpaceViewQuery`].
/// Iter over all of the currently visible [`EntityPath`]s in the [`ViewQuery`].
///
/// Also includes the corresponding [`EntityProperties`].
pub fn iter_entities(&self) -> impl Iterator<Item = (&EntityPath, EntityProperties)> {
Expand Down

0 comments on commit 26649ef

Please sign in to comment.