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