Skip to content

Commit 83086c6

Browse files
authored
Update typos & fix lots of now detected typos (#11442)
1 parent d4f8950 commit 83086c6

File tree

29 files changed

+95
-93
lines changed

29 files changed

+95
-93
lines changed

.github/workflows/contrib_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
uses: actions/checkout@v4
201201

202202
- name: Check spelling of entire workspace
203-
uses: crate-ci/typos@v1.36.3
203+
uses: crate-ci/typos@v1.37.3
204204

205205
cpp-formatting:
206206
name: C++ formatting check

.github/workflows/reusable_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.ref || '' }}
216216

217217
- name: Check spelling of entire workspace
218-
uses: crate-ci/typos@v1.36.3
218+
uses: crate-ci/typos@v1.37.3
219219

220220
# ---------------------------------------------------------------------------
221221

.typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ extend-ignore-re = [
175175
"cros_codecs",
176176
"cros-codecs",
177177

178+
"Secur32", # Referring to `Secur32.dll` on Windows.
179+
178180
"muh_scalars", # Weird name introduced in `crates/viewer/re_view_time_series/tests/basic.rs` introduced in https://github.com/rerun-io/rerun/pull/10713
179181

180182
"isse", # Name

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if(DEFINED ENV{RERUN_WERROR})
1111
endif()
1212

1313
if(DEFINED ENV{RERUN_USE_ASAN})
14-
message(STATUS "Compiling with address sanatizer ('asan') since RERUN_USE_ASAN is set.")
14+
message(STATUS "Compiling with address sanitizer ('asan') since RERUN_USE_ASAN is set.")
1515
set(RERUN_USE_ASAN ON)
1616
endif()
1717

@@ -45,7 +45,7 @@ function(rerun_strict_warning_settings target)
4545
endif()
4646

4747
if(RERUN_USE_ASAN)
48-
message(WARNING "Rerun C++ build does not support address sanatizer ('asan') on Windows. Ignoring RERUN_USE_ASAN.")
48+
message(WARNING "Rerun C++ build does not support address sanitizer ('asan') on Windows. Ignoring RERUN_USE_ASAN.")
4949
endif()
5050
else()
5151
# Enabled warnings.
@@ -115,7 +115,7 @@ function(rerun_strict_warning_settings target)
115115
endif()
116116

117117
if(RERUN_USE_ASAN)
118-
# Turn on the address sanatizer ("asan"):
118+
# Turn on the address sanitizer ("asan"):
119119
target_compile_options(${target} PRIVATE -fsanitize=address)
120120
target_link_options(${target} PRIVATE -fsanitize=address)
121121
endif()

crates/build/re_types_builder/src/docs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use crate::{Objects, Reporter, codegen::Target};
33
/// A high-level representation of the contents of a flatbuffer docstring.
44
#[derive(Debug, Clone, Default)]
55
pub struct Docs {
6-
/// All docmentation lines, including the leading tag, if any.
6+
/// All documentation lines, including the leading tag, if any.
77
///
88
/// If the tag is the empty string, it means the line is untagged.
99
///

crates/store/re_log_encoding/src/decoder/streaming.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ impl<R: AsyncBufRead + Unpin> StreamingDecoder<R> {
211211
}
212212

213213
/// `StreamingDecoder` relies on the underlying reader for the wakeup mechanism.
214-
/// The fact that we can have concatanated file or corrupted file ( / input stream) pushes us to keep
214+
/// The fact that we can have concatenated file or corrupted file ( / input stream) pushes us to keep
215215
/// the state of the decoder in the struct itself (through `unprocessed_bytes` and `expect_more_data`).
216216
impl<R: AsyncBufRead + Unpin> Stream for StreamingDecoder<R> {
217217
type Item = Result<StreamingLogMsg, DecodeError>;

crates/store/re_tf/src/transform_resolution_cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl CachedTransformsForTimeline {
173173
///
174174
/// If there's a concrete archetype in here, the mapped values are the full resolved pose transform.
175175
///
176-
/// `TransformResolutionCache` doesn't do tree propgation, however (!!!) there's a mini-tree in here that we already fully apply:
176+
/// `TransformResolutionCache` doesn't do tree propagation, however (!!!) there's a mini-tree in here that we already fully apply:
177177
/// `InstancePose3D` are applied on top of concrete archetype poses.
178178
#[derive(Clone, Debug, PartialEq, Default)]
179179
pub struct PoseTransformArchetypeMap {

crates/store/re_types/definitions/rerun/blueprint/archetypes/map_zoom.fbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace rerun.blueprint.archetypes;
22

33

44
/// Configuration of the map view zoom level.
5-
//TODO(ab): Turn this archetype into `MapArea` and include a `center: LatLon` componnent or similar
5+
//TODO(ab): Turn this archetype into `MapArea` and include a `center: LatLon` component or similar
66
table MapZoom (
77
"attr.rerun.scope": "blueprint",
88
"attr.python.aliases": "datatypes.Float64Like"

crates/store/re_types/definitions/rerun/testing/components/enum_test.fbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ enum EnumTest: ubyte {
2424
Back,
2525
}
2626

27-
/// A test of an enumate with specified values.
27+
/// A test of an enumerate with specified values.
2828
enum ValuedEnum: ubyte {
2929
/// Invalid value. Won't show up in generated types.
3030
Invalid = 0,

crates/store/re_types/src/testing/datatypes/valued_enum.rs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)