diff --git a/crates/build/re_types_builder/src/docs.rs b/crates/build/re_types_builder/src/docs.rs index 6aa6c73696b1..3f9084d09a5a 100644 --- a/crates/build/re_types_builder/src/docs.rs +++ b/crates/build/re_types_builder/src/docs.rs @@ -1,6 +1,6 @@ use crate::{codegen::Target, Objects}; -/// A high-level representation of the contetns of a flatbuffer docstring. +/// A high-level representation of the contents of a flatbuffer docstring. #[derive(Debug, Clone)] pub struct Docs { /// All docmentation lines, including the leading tag, if any. diff --git a/examples/python/objectron/objectron/proto/a_r_capture_metadata.proto b/examples/python/objectron/objectron/proto/a_r_capture_metadata.proto index 42e8d69ebef9..f3f02c55c2f2 100644 --- a/examples/python/objectron/objectron/proto/a_r_capture_metadata.proto +++ b/examples/python/objectron/objectron/proto/a_r_capture_metadata.proto @@ -336,7 +336,7 @@ message ARPlaneAnchor { // The classification status for the plane. enum PlaneClassificationStatus { - // The classfication process for the plane anchor has completed but the + // The classification process for the plane anchor has completed but the // result is inconclusive. UNKNOWN = 0; // No classication information can be provided (set on error or if the @@ -344,7 +344,7 @@ message ARPlaneAnchor { UNAVAILABLE = 1; // The classification process has not completed. UNDETERMINED = 2; - // The classfication process for the plane anchor has completed. + // The classification process for the plane anchor has completed. KNOWN = 3; } diff --git a/examples/rust/objectron/src/objectron.rs b/examples/rust/objectron/src/objectron.rs index 6bd4f2f9f858..a51843d96af5 100644 --- a/examples/rust/objectron/src/objectron.rs +++ b/examples/rust/objectron/src/objectron.rs @@ -688,7 +688,7 @@ pub mod ar_plane_anchor { )] #[repr(i32)] pub enum PlaneClassificationStatus { - /// The classfication process for the plane anchor has completed but the + /// The classification process for the plane anchor has completed but the /// result is inconclusive. Unknown = 0, /// No classication information can be provided (set on error or if the @@ -696,7 +696,7 @@ pub mod ar_plane_anchor { Unavailable = 1, /// The classification process has not completed. Undetermined = 2, - /// The classfication process for the plane anchor has completed. + /// The classification process for the plane anchor has completed. Known = 3, } impl PlaneClassificationStatus { diff --git a/rerun_py/rerun_sdk/rerun/archetypes/video_frame_reference_ext.py b/rerun_py/rerun_sdk/rerun/archetypes/video_frame_reference_ext.py index 95d0f56fd485..864e7c1afc78 100644 --- a/rerun_py/rerun_sdk/rerun/archetypes/video_frame_reference_ext.py +++ b/rerun_py/rerun_sdk/rerun/archetypes/video_frame_reference_ext.py @@ -28,15 +28,15 @@ def __init__( Note that this uses the closest video frame instead of the latest at this timestamp in order to be more forgiving of rounding errors for inprecise timestamp types. - Mutally exclusive with `seconds` and `nanoseconds`. + Mutually exclusive with `seconds` and `nanoseconds`. seconds: Sets the timestamp to the given number of seconds. - Mutally exclusive with `timestamp` and `nanoseconds`. + Mutually exclusive with `timestamp` and `nanoseconds`. nanoseconds: Sets the timestamp to the given number of nanoseconds. - Mutally exclusive with `timestamp` and `seconds`. + Mutually exclusive with `timestamp` and `seconds`. video_reference: Optional reference to an entity with a [`archetypes.AssetVideo`][rerun.archetypes.AssetVideo].