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

@@ -155,7 +155,7 @@ impl<C: Curve, T: Clone + Debug + Transcript, H: Hram<C>> Schnorr<C, T, H> {
impl<C: Curve, H: Hram<C>> IetfSchnorr<C, H> {
/// Construct a IETF-compatible Schnorr algorithm.
///
/// Please see the IetfSchnorr documentation for the full details of this.
/// Please see the `IetfSchnorr` documentation for the full details of this.
pub fn ietf() -> IetfSchnorr<C, H> {
Schnorr::new(IetfTranscript(vec![]))
}