|
1 | 1 | use crate::{ |
2 | | - array::array_debug, enums::enum_debug, list::list_debug, map_debug, set_debug, struct_debug, |
3 | | - tuple_debug, tuple_struct_debug, DynamicTypePath, DynamicTyped, OpaqueInfo, ReflectCloneError, |
4 | | - ReflectKind, ReflectKindMismatchError, ReflectMut, ReflectOwned, ReflectRef, TypeInfo, |
5 | | - TypePath, Typed, |
| 2 | + array::array_debug, enums::enum_debug, list::list_debug, map::map_debug, set_debug, |
| 3 | + struct_debug, tuple_debug, tuple_struct_debug, DynamicTypePath, DynamicTyped, OpaqueInfo, |
| 4 | + ReflectCloneError, ReflectKind, ReflectKindMismatchError, ReflectMut, ReflectOwned, ReflectRef, |
| 5 | + TypeInfo, TypePath, Typed, |
6 | 6 | }; |
7 | 7 | use alloc::borrow::Cow; |
8 | 8 | use alloc::boxed::Box; |
@@ -188,10 +188,10 @@ where |
188 | 188 | /// [`Enum`]: crate::enums::Enum |
189 | 189 | /// [`List`]: crate::list::List |
190 | 190 | /// [`Array`]: crate::array::Array |
191 | | - /// [`Map`]: crate::Map |
| 191 | + /// [`Map`]: crate::map::Map |
192 | 192 | /// [`Set`]: crate::Set |
193 | 193 | /// [`list_apply`]: crate::list::list_apply |
194 | | - /// [`map_apply`]: crate::map_apply |
| 194 | + /// [`map_apply`]: crate::map::map_apply |
195 | 195 | /// [`set_apply`]: crate::set_apply |
196 | 196 | /// |
197 | 197 | /// # Panics |
@@ -353,7 +353,7 @@ where |
353 | 353 | /// where `type_path` is the [type path] of the underlying type. |
354 | 354 | /// |
355 | 355 | /// [`List`]: crate::list::List |
356 | | - /// [`Map`]: crate::Map |
| 356 | + /// [`Map`]: crate::map::Map |
357 | 357 | /// [type path]: TypePath::type_path |
358 | 358 | fn debug(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { |
359 | 359 | match self.reflect_ref() { |
|
0 commit comments