From 8b41cfabde848b24fdae65d09ad961c2412e023b Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 25 Oct 2022 18:59:31 +0200 Subject: Fix type of `start` on list in mdast Closes GH-17. Co-authored-by: Christian Murphy --- src/mdast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mdast.rs b/src/mdast.rs index 559ff62..f0ca902 100644 --- a/src/mdast.rs +++ b/src/mdast.rs @@ -558,7 +558,7 @@ pub struct List { pub ordered: bool, /// Starting number of the list. /// `None` when unordered. - pub start: Option, + pub start: Option, /// One or more of its children are separated with a blank line from its /// siblings (when `true`), or not (when `false`). pub spread: bool, -- cgit