From 812036fadae009faf8db92027b6873eb140de02b Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sat, 1 Nov 2025 02:22:10 -0400 Subject: [PATCH] chore(doc): fix incorrect comment on list generator --- src/generators/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generators/list.rs b/src/generators/list.rs index c8e7b9e..f863e82 100644 --- a/src/generators/list.rs +++ b/src/generators/list.rs @@ -18,7 +18,7 @@ pub struct ListConfiguration { pub values: Vec>, } -/// Generates a set of entries using the specified `matrix` configuration in the `context`. +/// Generates a set of entries using the specified `list` configuration in the `context`. pub fn generate( context: Rc, list: &ListConfiguration,