@@ -190,7 +190,7 @@ pub struct Tag {
190
190
/// cannot be mutated or serialized. Instead, one will [convert](ObjectRef::into_owned()) them into their [`mutable`](Object) counterparts
191
191
/// which support mutation and serialization.
192
192
///
193
- /// An `ObjectRef` is representing [`Trees`], [`Blobs`], [`Commits`], or [`Tags`].
193
+ /// An `ObjectRef` is representing [`Trees`](TreeRef) , [`Blobs`](BlobRef) , [`Commits`](CommitRef) , or [`Tags`](TagRef) .
194
194
#[ derive( PartialEq , Eq , Debug , Hash , Ord , PartialOrd , Clone ) ]
195
195
#[ cfg_attr( feature = "serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
196
196
#[ allow( missing_docs) ]
@@ -209,7 +209,7 @@ pub enum ObjectRef<'a> {
209
209
/// They either created using object [construction](Object) or by [deserializing existing objects](ObjectRef::from_bytes())
210
210
/// and converting these [into mutable copies](ObjectRef::into_owned()) for adjustments.
211
211
///
212
- /// An `Object` is representing [`Trees`], [`Blobs`], [`Commits`] or [`Tags`].
212
+ /// An `Object` is representing [`Trees`](Tree) , [`Blobs`](Blob) , [`Commits`](Commit), or [`Tags`](Tag) .
213
213
#[ derive( PartialEq , Eq , Debug , Hash , Ord , PartialOrd , Clone ) ]
214
214
#[ cfg_attr( feature = "serde" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
215
215
#[ allow( clippy:: large_enum_variant, missing_docs) ]
0 commit comments