diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:24:06 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:24:06 +0200 |
commit | 6e20c3e79d4270fafb13a63af51eaffaa45c11e1 (patch) | |
tree | 3fb3952e00c5e111f30a73d7c25b0879e5a1d052 /src/event.rs | |
parent | 3a4de4b3a89e7171f8e3e0b6bf02fcd2d5c5f748 (diff) | |
download | markdown-rs-6e20c3e79d4270fafb13a63af51eaffaa45c11e1.tar.gz markdown-rs-6e20c3e79d4270fafb13a63af51eaffaa45c11e1.tar.bz2 markdown-rs-6e20c3e79d4270fafb13a63af51eaffaa45c11e1.zip |
Refactor to rename list construct to list item
Diffstat (limited to '')
-rw-r--r-- | src/event.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/event.rs b/src/event.rs index be32b5b..8cdb959 100644 --- a/src/event.rs +++ b/src/event.rs @@ -1332,7 +1332,7 @@ pub enum Name { /// [`ListItemPrefix`][Name::ListItemPrefix], /// [flow content][crate::content::flow] /// * **Construct**: - /// [`list`][crate::construct::list] + /// [`list item`][crate::construct::list_item] /// /// ## Example /// @@ -1352,7 +1352,7 @@ pub enum Name { /// * **Content model**: /// void /// * **Construct**: - /// [`list`][crate::construct::list] + /// [`list item`][crate::construct::list_item] /// /// ## Example /// @@ -1374,7 +1374,7 @@ pub enum Name { /// [`ListItemValue`][Name::ListItemValue], /// [`SpaceOrTab`][Name::SpaceOrTab] /// * **Construct**: - /// [`list`][crate::construct::list] + /// [`list item`][crate::construct::list_item] /// /// ## Example /// @@ -1394,7 +1394,7 @@ pub enum Name { /// * **Content model**: /// void /// * **Construct**: - /// [`list`][crate::construct::list] + /// [`list item`][crate::construct::list_item] /// /// ## Example /// @@ -1416,7 +1416,7 @@ pub enum Name { /// [`LineEnding`][Name::LineEnding], /// [`SpaceOrTab`][Name::SpaceOrTab] /// * **Construct**: - /// [`list`][crate::construct::list] + /// [`list item`][crate::construct::list_item] /// /// ## Example /// @@ -1440,7 +1440,7 @@ pub enum Name { /// [`LineEnding`][Name::LineEnding], /// [`SpaceOrTab`][Name::SpaceOrTab] /// * **Construct**: - /// [`list`][crate::construct::list] + /// [`list item`][crate::construct::list_item] /// /// ## Example /// |