Correct doc comments re: HTML tags

This commit is contained in:
Luke Parker
2023-03-07 05:34:29 -05:00
parent 11114dcb74
commit 1e201562df
4 changed files with 5 additions and 5 deletions

View File

@@ -191,7 +191,7 @@ impl<G: PrimeGroup> DLEqProof<G> {
Ok(DLEqProof { c: read_scalar(r)?, s: read_scalar(r)? })
}
/// Serialize a DLEq proof to a Vec<u8>.
/// Serialize a DLEq proof to a `Vec<u8>`.
#[cfg(feature = "serialize")]
pub fn serialize(&self) -> Vec<u8> {
let mut res = vec![];
@@ -315,7 +315,7 @@ impl<G: PrimeGroup> MultiDLEqProof<G> {
Ok(MultiDLEqProof { c, s })
}
/// Serialize a multi-DLEq proof to a Vec<u8>.
/// Serialize a multi-DLEq proof to a `Vec<u8>`.
#[cfg(feature = "serialize")]
pub fn serialize(&self) -> Vec<u8> {
let mut res = vec![];