diff --git a/src/plonk.rs b/src/plonk.rs index fc89cc6..4e4de2e 100644 --- a/src/plonk.rs +++ b/src/plonk.rs @@ -83,14 +83,14 @@ pub enum Error { } impl ProvingKey { - /// Get the underlying `VerifyingKey` + /// Get the underlying [`VerifyingKey`]. pub fn get_vk(&self) -> &VerifyingKey { &self.vk } } impl VerifyingKey { - /// Get the underlying `VerifyingKey` + /// Get the underlying [`EvaluationDomain`]. pub fn get_domain(&self) -> &EvaluationDomain { &self.domain }