bevy/crates/bevy_reflect/bevy_reflect_derive
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
..
src Fix typo in NamedTypePathDef (#9102) 2023-07-10 17:02:16 +00:00
Cargo.toml Release 0.11.0 (#9080) 2023-07-09 08:43:47 +00:00