bevy/crates/bevy_gizmos/src
Ame 9d67edc3a6
fix some typos (#12038)
# Objective

Split - containing only the fixed typos

-
https://github.com/bevyengine/bevy/pull/12036#pullrequestreview-1894738751


# Migration Guide
In `crates/bevy_mikktspace/src/generated.rs` 

```rs
// before
pub struct SGroup {
    pub iVertexRepresentitive: i32,
    ..
}

// after
pub struct SGroup {
    pub iVertexRepresentative: i32,
    ..
}
```

In `crates/bevy_core_pipeline/src/core_2d/mod.rs`

```rs
// before
Node2D::ConstrastAdaptiveSharpening

// after
Node2D::ContrastAdaptiveSharpening
```

---------

Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
Co-authored-by: James Liu <contact@jamessliu.com>
Co-authored-by: François <mockersf@gmail.com>
2024-02-22 18:55:22 +00:00
..
primitives fix some typos (#12038) 2024-02-22 18:55:22 +00:00
aabb.rs Multiple Configurations for Gizmos (#10342) 2024-01-18 15:52:50 +00:00
arcs.rs Drawing Primitives with Gizmos (#11072) 2024-02-02 21:13:03 +00:00
arrows.rs Drawing Primitives with Gizmos (#11072) 2024-02-02 21:13:03 +00:00
circles.rs Drawing Primitives with Gizmos (#11072) 2024-02-02 21:13:03 +00:00
config.rs Use TypeIdMap whenever possible (#11684) 2024-02-03 23:47:04 +00:00
gizmos.rs Enable the unsafe_op_in_unsafe_fn lint (#11591) 2024-01-28 23:18:11 +00:00
lib.rs Overwrite gizmo group in insert_gizmo_group (#11860) 2024-02-14 16:20:16 +00:00
lines.wgsl Fix float precision issue in the gizmo shader (#10408) 2023-11-14 22:36:02 +00:00
pipeline_2d.rs Multiple Configurations for Gizmos (#10342) 2024-01-18 15:52:50 +00:00
pipeline_3d.rs Multiple Configurations for Gizmos (#10342) 2024-01-18 15:52:50 +00:00