@@ -70,7 +70,7 @@ pub use initiate::*;
70
70
/// `bitflags!`) and you cannot put attributes on it.
71
71
///
72
72
/// This attribute requires that there be exactly one non-skipped field. Fields
73
- /// of type [`PhantomData`](std ::marker::PhantomData) are automatically skipped.
73
+ /// of type [`PhantomData`](core ::marker::PhantomData) are automatically skipped.
74
74
///
75
75
/// Note that it is not sufficient to mark any extraneous fields' _types_ with
76
76
/// `skip`--you must mark the individual fields with the `skip` attribute.
@@ -209,7 +209,7 @@ pub use initiate::*;
209
209
/// ### `debug`
210
210
///
211
211
/// Inspect the field by formatting it as a string, using the field's
212
- /// [`std ::fmt::Debug`] implementation.
212
+ /// [`core ::fmt::Debug`] implementation.
213
213
///
214
214
/// In general, implementing [`Inspect`] for the field should be preferred to
215
215
/// this in order to preserve structured data.
@@ -727,7 +727,7 @@ impl Response<'_> {
727
727
self . field ( name, AsBinary ( value) )
728
728
}
729
729
730
- /// Adds a string field that implements [`std ::fmt::Display`].
730
+ /// Adds a string field that implements [`core ::fmt::Display`].
731
731
///
732
732
/// This is a convenience method for `field_with(name, ||
733
733
/// value.to_string())`. It lazily allocates the string only when the
@@ -745,7 +745,7 @@ impl Response<'_> {
745
745
self . field_with ( name, || value. to_string ( ) )
746
746
}
747
747
748
- /// Adds a string field that implements [`std ::fmt::Debug`].
748
+ /// Adds a string field that implements [`core ::fmt::Debug`].
749
749
///
750
750
/// This is a convenience method for `field(name, format_args!("{value:?}"))`.
751
751
///
0 commit comments