diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/library/structure/list.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/structure/list.rs b/src/library/structure/list.rs index 02a7cd38..9d5d3a7d 100644 --- a/src/library/structure/list.rs +++ b/src/library/structure/list.rs @@ -53,7 +53,7 @@ impl<const L: ListKind> ListNode<L> { fn construct(_: &mut Context, args: &mut Args) -> TypResult<Content> { Ok(Content::show(Self { - start: args.named("start")?.unwrap_or(0), + start: args.named("start")?.unwrap_or(1), wide: args.named("wide")?.unwrap_or(false), items: args .all()? |
