Skip to content

Commit

Permalink
Fix some new typos found by new version of typos (#7981)
Browse files Browse the repository at this point in the history
* [x] `typos -w`
  • Loading branch information
emilk authored Nov 4, 2024
1 parent ff1305e commit 59773c9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/build/re_types_builder/src/docs.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,15 +336,15 @@ 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
// device does not support plane classification).
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;
}

Expand Down
4 changes: 2 additions & 2 deletions examples/rust/objectron/src/objectron.rs

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

Original file line number Diff line number Diff line change
Expand Up @@ -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].
Expand Down

0 comments on commit 59773c9

Please sign in to comment.