bevy/crates/bevy_reflect/bevy_reflect_derive/src
Cptn-Sherman aa03130234
Fix typo in NamedTypePathDef (#9102)
# Objective
Fixes #9091 

## Solution
Rename instances of `Primtive` to `Primitive`

## Migration Guide

Before: 

```rust 
let type_path = NamedTypePathDef::Primtive(ident);
```

After: 
```rust
let type_path = NamedTypePathDef::Primitive(ident);
```
2023-07-10 17:02:16 +00:00
..
impls bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
container_attributes.rs Fix typos throughout the project (#9090) 2023-07-10 00:11:51 +00:00
derive_data.rs Fix typos throughout the project (#9090) 2023-07-10 00:11:51 +00:00
documentation.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
enum_utility.rs bevy_reflect: Allow #[reflect(default)] on enum variant fields (#8514) 2023-05-29 15:29:29 +00:00
field_attributes.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
fq_std.rs Enable deriving Reflect on structs with generic types (#7364) 2023-01-28 00:12:06 +00:00
from_reflect.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
lib.rs Fix typo in NamedTypePathDef (#9102) 2023-07-10 17:02:16 +00:00
reflect_value.rs reflect: stable type path v2 (#7184) 2023-06-05 20:31:20 +00:00
registration.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00
trait_reflection.rs Fix beta clippy lints (#7154) 2023-01-11 09:51:22 +00:00
type_path.rs Fix typo in NamedTypePathDef (#9102) 2023-07-10 17:02:16 +00:00
type_uuid.rs update syn, encase, glam and hexasphere (#8573) 2023-05-16 01:24:17 +00:00
utility.rs bevy_reflect: FromReflect Ergonomics Implementation (#6056) 2023-06-29 01:31:34 +00:00