diff --git a/content/learn/migration-guides/0.11-0.12/_index.md b/content/learn/migration-guides/0.11-0.12/_index.md index 32e74e4a25..b152ec1d9f 100644 --- a/content/learn/migration-guides/0.11-0.12/_index.md +++ b/content/learn/migration-guides/0.11-0.12/_index.md @@ -751,21 +751,6 @@ bevy = { version = "0.11", features = ["bevy_dylib"] } bevy = { version = "0.12", features = ["dynamic_linking"] } ``` -### [Fix typo in NamedTypePathDef](https://github.com/bevyengine/bevy/pull/9102) - -
-
Reflection
-
- -Renamed `NamedTypePathDef::Primtive` to `NamedTypePathDef::Primitive` - -```rust -// 0.11 -let type_path = NamedTypePathDef::Primtive(ident); -// 0.12 -let type_path = NamedTypePathDef::Primitive(ident); -``` - ### [Refactor `path` module of `bevy_reflect`](https://github.com/bevyengine/bevy/pull/8887)