File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1802,7 +1802,7 @@ bevy_reflect::tests::Test {
1802
1802
let output = to_string_pretty ( & ser, config) . unwrap ( ) ;
1803
1803
let expected = r#"
1804
1804
{
1805
- "glam::f32::vec3:: Vec3": (
1805
+ "glam::Vec3": (
1806
1806
x: 12.0,
1807
1807
y: 3.0,
1808
1808
z: -6.9,
@@ -1816,7 +1816,7 @@ bevy_reflect::tests::Test {
1816
1816
fn vec3_deserialization ( ) {
1817
1817
let data = r#"
1818
1818
{
1819
- "glam::f32::vec3:: Vec3": (
1819
+ "glam::Vec3": (
1820
1820
x: 12.0,
1821
1821
y: 3.0,
1822
1822
z: -6.9,
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ impl<'de> Visitor<'de> for U32Visitor {
233
233
/// [`DynamicStruct`]: crate::DynamicStruct
234
234
/// [`DynamicList`]: crate::DynamicList
235
235
/// [`FromReflect`]: crate::FromReflect
236
- /// [type path]: TypePath::type_path
236
+ /// [type path]: crate:: TypePath::type_path
237
237
pub struct UntypedReflectDeserializer < ' a > {
238
238
registry : & ' a TypeRegistry ,
239
239
}
@@ -264,7 +264,7 @@ impl<'a, 'de> DeserializeSeed<'de> for UntypedReflectDeserializer<'a> {
264
264
/// type to find the `TypeRegistration` of.
265
265
///
266
266
/// [`&TypeRegistration`]: crate::TypeRegistration
267
- /// [type path]: TypePath::type_path
267
+ /// [type path]: crate:: TypePath::type_path
268
268
pub struct TypeRegistrationDeserializer < ' a > {
269
269
registry : & ' a TypeRegistry ,
270
270
}
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ fn get_serializable<'a, E: serde::ser::Error>(
49
49
/// 1. `type`: The _full_ [type path]
50
50
/// 2. `value`: The serialized value of the reflected type
51
51
///
52
- /// [type path]: TypePath::type_path
52
+ /// [type path]: crate:: TypePath::type_path
53
53
pub struct ReflectSerializer < ' a > {
54
54
pub value : & ' a dyn Reflect ,
55
55
pub registry : & ' a TypeRegistry ,
You can’t perform that action at this time.
0 commit comments