Commit 0cd7be8e authored by Ian Jackson's avatar Ian Jackson
Browse files

tor-netdoc: Fix two references to NetdocUnverified d-d template

The trait is called NetdocUnverified, but the template is
NetdocParseableUnverified.  This fixes a dead docs link (which somehow
isn't spotted by rustdoc, but is instead taken to refer to a
nonexistent file).
parent 16d8c698
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -509,7 +509,7 @@ define_derive_deftly! {
    /// To handle signed documents define two structures:
    ///
    ///  * `Foo`, containing only the content, not the signatures.
    ///    Derive [`NetdocParseableUnverified`](derive_deftly_template_NetdocUnverified).
    ///    Derive [`NetdocParseableUnverified`](derive_deftly_template_NetdocParseableUnverified).
    ///  * `FooSignatures`, containing only the signatures.
    ///    Derive `NetdocParseableSignatures`.
    ///
@@ -693,7 +693,7 @@ define_derive_deftly! {
    ///
    /// This signatures sub-document will typically be included in a
    /// `FooUnverified` struct derived with
    /// [`NetdocUnverified`](derive_deftly_template_NetdocUnverified),
    /// [`NetdocParseableUnverified`](derive_deftly_template_NetdocParseableUnverified),
    /// rather than included anywhere manually.
    ///
    /// ### Expected input structure