Skip to content

Commit 27e7111

Browse files
committed
typos & lints
1 parent 3ebcafc commit 27e7111

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

crates/store/re_tf/src/transform_resolution_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ impl CachedTransformsForTimeline {
290290
self.per_child_frame_transforms.get(&source_frame)
291291
}
292292

293-
/// Returns all instace poses for a given entity path.
293+
/// Returns all instance poses for a given entity path.
294294
#[inline]
295295
pub fn pose_transforms(&self, entity_path: EntityPathHash) -> Option<&PoseTransformForEntity> {
296296
self.per_entity_poses.get(&entity_path)

crates/viewer/re_view_spatial/src/contexts/transform_tree_context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ impl ViewContextSystem for TransformTreeContext {
250250

251251
TransformInfo::new(tree_transform, poses)
252252
})
253-
.map_err(|e| e.clone());
253+
.map_err(|err| err.clone());
254254

255255
(*entity_path_hash, transform_info)
256256
})

crates/viewer/re_view_spatial/src/visualizers/transform_axes_3d.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ impl VisualizerSystem for TransformAxes3DVisualizer {
4444
.chain(TransformAxes3D::all_component_identifiers())
4545
.chain(InstancePoses3D::all_component_identifiers())
4646
.chain(CoordinateFrame::all_component_identifiers())
47-
//.chain(Pinhole::all_component_identifiers()) // TODO: separate PR.
4847
.collect(),
4948
);
5049

0 commit comments

Comments
 (0)