diff options
Diffstat (limited to '')
-rw-r--r-- | src/mdast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<u8>, + pub start: Option<u32>, /// One or more of its children are separated with a blank line from its /// siblings (when `true`), or not (when `false`). pub spread: bool, |