aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 24a794b..f9f5326 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -218,13 +218,13 @@ pub struct Constructs {
/// ^^^^
/// ```
pub label_end: bool,
- /// List.
+ /// List items.
///
/// ```markdown
/// > | * a
/// ^^^
/// ```
- pub list: bool,
+ pub list_item: bool,
/// Thematic break.
///
/// ```markdown
@@ -256,7 +256,7 @@ impl Default for Constructs {
label_start_image: true,
label_start_link: true,
label_end: true,
- list: true,
+ list_item: true,
thematic_break: true,
}
}