bevy/crates/bevy_reflect/bevy_reflect_derive/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
..
impls bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
container_attributes.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
derive_data.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
documentation.rs Moved fq_std from bevy_reflect_derive to bevy_macro_utils (#9956) 2023-10-02 00:22:57 +00:00
enum_utility.rs Moved fq_std from bevy_reflect_derive to bevy_macro_utils (#9956) 2023-10-02 00:22:57 +00:00
field_attributes.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
from_reflect.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
lib.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
reflect_value.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
registration.rs bevy_reflect_derive: Clean up attribute logic (#11777) 2024-02-12 15:16:27 +00:00
serialization.rs bevy_reflect: Fix ignored/skipped field order (#7575) 2023-10-22 12:43:31 +00:00
trait_reflection.rs Moved fq_std from bevy_reflect_derive to bevy_macro_utils (#9956) 2023-10-02 00:22:57 +00:00
type_path.rs Fix typo in NamedTypePathDef (#9102) 2023-07-10 17:02:16 +00:00
utility.rs fix some typos (#12038) 2024-02-22 18:55:22 +00:00