From 7a3caaad59859cf6b4e0677de6df1cdfddffdd6e Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 29 Sep 2020 08:28:00 -0600 Subject: [PATCH] Fix comments --- src/plonk.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }