Skip to content

Commit

Permalink
fix doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
ggutoski committed Sep 13, 2023
1 parent aac9dea commit 0f60681
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions primitives/src/vid/advz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ where
}
}

/// The [`VidScheme::StorageShare`] type for [`Advz`].
/// The [`VidScheme::Share`] type for [`Advz`].
#[derive(Derivative, Deserialize, Serialize)]
// TODO https://github.com/EspressoSystems/jellyfish/issues/253
// #[derivative(Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
Expand All @@ -127,7 +127,7 @@ where
evals_proof: V::MembershipProof,
}

/// The [`VidScheme::StorageCommon`] type for [`Advz`].
/// The [`VidScheme::Common`] type for [`Advz`].
#[derive(CanonicalSerialize, CanonicalDeserialize, Derivative, Deserialize, Serialize)]
// TODO https://github.com/EspressoSystems/jellyfish/issues/253
// #[derivative(Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
Expand Down Expand Up @@ -272,7 +272,7 @@ where
V::MembershipProof: Sync + Debug, /* TODO https://github.com/EspressoSystems/jellyfish/issues/253 */
V::Index: From<u64>,
{
/// Same as [`VidScheme::dispersal_data`] except `payload` is a slice of
/// Same as [`VidScheme::disperse`] except `payload` is a slice of
/// field elements.
pub fn disperse_from_elems(&self, payload: &[P::Evaluation]) -> VidResult<VidDisperse<Self>> {
let num_polys = (payload.len() - 1) / self.payload_chunk_size + 1;
Expand Down

0 comments on commit 0f60681

Please sign in to comment.