diff --git a/types/src/blob/commitment.rs b/types/src/blob/commitment.rs index 0f03adb7..fb21b4f5 100644 --- a/types/src/blob/commitment.rs +++ b/types/src/blob/commitment.rs @@ -55,7 +55,7 @@ use crate::{InfoByte, Share}; #[cfg_attr(all(feature = "wasm-bindgen", target_arch = "wasm32"), wasm_bindgen)] #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] pub struct Commitment { - /// hash of the commitment + /// Hash of the commitment hash: merkle::Hash, } @@ -115,7 +115,7 @@ impl Commitment { Ok(Commitment { hash }) } - /// hash of the commitment + /// Hash of the commitment pub fn hash(&self) -> &merkle::Hash { &self.hash }