diff --git a/cli/src/template_builder.rs b/cli/src/template_builder.rs index 03b942699..b991e80d0 100644 --- a/cli/src/template_builder.rs +++ b/cli/src/template_builder.rs @@ -134,11 +134,16 @@ pub enum CoreTemplatePropertyKind<'a> { Timestamp(Box + 'a>), TimestampRange(Box + 'a>), - // TODO: This argument no longer makes sense. Maybe we can migrate these to - // TemplateProperty<..>: - // Similar to `TemplateProperty + 'a>`, but doesn't - // capture `I` to produce `Template<()>`. The context `I` would have to be cloned - // to convert `Template` to `Template<()>`. + // Both TemplateProperty and Template can represent a value to be evaluated + // dynamically, which suggests that `Box` could be + // composed as `Box), ListTemplate(Box), }