Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Sep 16, 2024
1 parent 463e581 commit 5049e93
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions crates/store/re_types/src/archetypes/asset_video.rs

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

6 changes: 3 additions & 3 deletions crates/store/re_types/src/archetypes/video_frame_reference.rs

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

2 changes: 1 addition & 1 deletion crates/store/re_video/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl VideoData {
} else if mp4::is_mp4(data) {
"video/mp4".to_owned()
} else {
// Technically this means that we failed to determine the media type alltogether,
// Technically this means that we failed to determine the media type altogether,
// but we don't want to call it `FailedToDetermineMediaType` since the rest of Rerun has
// access to `re_types::components::MediaType` which has a much wider range of media type detection.
return Err(VideoLoadError::UnsupportedVideoType);
Expand Down
2 changes: 1 addition & 1 deletion docs/content/reference/types/archetypes.md

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

2 changes: 1 addition & 1 deletion docs/content/reference/types/components.md

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

2 changes: 1 addition & 1 deletion docs/snippets/all/archetypes/video_manual_frames.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ int main(int argc, char* argv[]) {
// Log video asset which is referred to by frame references.
rec.log_static("video_asset", rerun::AssetVideo::from_file(path).value_or_throw());

// Create two entites, showing the same video frozen at different times.
// Create two entities, showing the same video frozen at different times.
rec.log("frame_at_start", rerun::VideoFrameReference(0.0s).with_video_reference("video_asset"));
rec.log(
"frame_at_one_second",
Expand Down
2 changes: 1 addition & 1 deletion docs/snippets/all/archetypes/video_manual_frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Log video asset which is referred to by frame references.
rr.log("video_asset", rr.AssetVideo(path=sys.argv[1]), static=True)

# Create two entites, showing the same video frozen at different times.
# Create two entities, showing the same video frozen at different times.
rr.log(
"frame_at_start",
rr.VideoFrameReference(
Expand Down
2 changes: 1 addition & 1 deletion docs/snippets/all/archetypes/video_manual_frames.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn main() -> anyhow::Result<()> {
// Log video asset which is referred to by frame references.
rec.log_static("video_asset", &rerun::AssetVideo::from_file_path(path)?)?;

// Create two entites, showing the same video frozen at different times.
// Create two entities, showing the same video frozen at different times.
rec.log(
"frame_at_start",
&rerun::VideoFrameReference::new(rerun::components::VideoTimestamp::from_seconds(0.0))
Expand Down
2 changes: 1 addition & 1 deletion rerun_cpp/src/rerun/archetypes/asset_video.hpp

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/archetypes/video_frame_reference.hpp

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

2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun/archetypes/asset_video.py

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

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

0 comments on commit 5049e93

Please sign in to comment.