From 4e771d6546b049bf554ef5f18a92a61507a2b66c Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Sun, 13 Dec 2020 20:35:59 -0800 Subject: [PATCH] [docs] Add docs to the 'template' module --- src/descriptor/template.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/descriptor/template.rs b/src/descriptor/template.rs index 9dbbf153..48609c19 100644 --- a/src/descriptor/template.rs +++ b/src/descriptor/template.rs @@ -60,6 +60,7 @@ pub type DescriptorTemplateOut = (ExtendedDescriptor, KeyMap, ValidNetworks); /// } /// ``` pub trait DescriptorTemplate { + /// Build the complete descriptor fn build(self) -> Result; }