Skip to content

Commit

Permalink
Fix typos (rerun-io#7555)
Browse files Browse the repository at this point in the history
### What
New version of `typos` with more typos detected

### Checklist
* [x] I have read and agree to [Contributor
Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and
the [Code of
Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md)
* [x] I've included a screenshot or gif (if applicable)
* [x] I have tested the web demo (if applicable):
* Using examples from latest `main` build:
[rerun.io/viewer](https://rerun.io/viewer/pr/7555?manifest_url=https://app.rerun.io/version/main/examples_manifest.json)
* Using full set of examples from `nightly` build:
[rerun.io/viewer](https://rerun.io/viewer/pr/7555?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json)
* [x] The PR title and labels are set such as to maximize their
usefulness for the next release's CHANGELOG
* [x] If applicable, add a new check to the [release
checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)!
* [x] If have noted any breaking changes to the log API in
`CHANGELOG.md` and the migration guide

- [PR Build Summary](https://build.rerun.io/pr/7555)
- [Recent benchmark results](https://build.rerun.io/graphs/crates.html)
- [Wasm size tracking](https://build.rerun.io/graphs/sizes.html)

To run all checks from `main`, comment on the PR with `@rerun-bot
full-check`.
  • Loading branch information
emilk authored Oct 1, 2024
1 parent 05cd6e7 commit 602a768
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/store/re_types_core/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl SerializationError {
///
/// The motivation behind this type is that we often use code that can return a `arrow2::error::Error`
/// inside functions that return a `SerializationError`. By wrapping it we can use the ? operator and simplify the code.
/// Second, normally also `arrow2::error::Error` isn't clonable, but `SerializationError` is.
/// Second, normally also `arrow2::error::Error` isn't cloneable, but `SerializationError` is.
#[derive(Clone, Debug)]
pub struct ArcArrowError(std::sync::Arc<arrow2::error::Error>);

Expand Down
2 changes: 1 addition & 1 deletion crates/utils/re_log/src/setup.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Function to setup logging in binaries and web apps.
/// Automatically does the right thing dependending on target environment (native vs. web).
/// Automatically does the right thing depending on target environment (native vs. web).
///
/// Directs [`log`] calls to stderr on native.
pub fn setup_logging() {
Expand Down
2 changes: 1 addition & 1 deletion crates/viewer/re_renderer/src/renderer/lines.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ struct LineStripBatch {
}

/// A line drawing operation. Encompasses several lines, each consisting of a list of positions.
/// Expected to be recrated every frame.
/// Expected to be recreated every frame.
#[derive(Clone)]
pub struct LineDrawData {
bind_group_all_lines: Option<GpuBindGroup>,
Expand Down
2 changes: 1 addition & 1 deletion crates/viewer/re_renderer/src/renderer/point_cloud.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ struct PointCloudBatch {
}

/// A point cloud drawing operation.
/// Expected to be recrated every frame.
/// Expected to be recreated every frame.
#[derive(Clone)]
pub struct PointCloudDrawData {
bind_group_all_points: Option<GpuBindGroup>,
Expand Down

0 comments on commit 602a768

Please sign in to comment.