From fa1fb6731082eae52678ffd0d267825dc9b046e9 Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Fri, 3 Nov 2023 15:53:50 -0700 Subject: [PATCH] Oops --- content/learn/migration-guides/0.11-0.12/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 669cf35510..97afbf0783 100644 --- a/content/learn/migration-guides/0.11-0.12/_index.md +++ b/content/learn/migration-guides/0.11-0.12/_index.md @@ -757,11 +757,11 @@ bevy = { version = "0.12", features = ["dynamic_linking"] }
Reflection
-Renamed `NamedTypePathDef::Primitive` to `NamedTypePathDef::Primitive` +Renamed `NamedTypePathDef::Primtive` to `NamedTypePathDef::Primitive` ```rust // 0.11 -let type_path = NamedTypePathDef::Primitive(ident); +let type_path = NamedTypePathDef::Primtive(ident); // 0.12 let type_path = NamedTypePathDef::Primitive(ident); ```