diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:40:40 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 11:40:40 +0200 |
commit | ee967aa634b5f8e9d30329d587538f1371a5da95 (patch) | |
tree | cdc1461c822e440b24428eb8d431881e216ab8bd /src/construct/list_item.rs | |
parent | 13135666fac476f3cd6f059147f496533b304097 (diff) | |
download | markdown-rs-ee967aa634b5f8e9d30329d587538f1371a5da95.tar.gz markdown-rs-ee967aa634b5f8e9d30329d587538f1371a5da95.tar.bz2 markdown-rs-ee967aa634b5f8e9d30329d587538f1371a5da95.zip |
Refactor to move `content` to `construct`
Diffstat (limited to 'src/construct/list_item.rs')
-rw-r--r-- | src/construct/list_item.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/list_item.rs b/src/construct/list_item.rs index 5161254..a70906a 100644 --- a/src/construct/list_item.rs +++ b/src/construct/list_item.rs @@ -38,7 +38,7 @@ //! * [*§ 5.2 List items* in `CommonMark`](https://spec.commonmark.org/0.30/#list-items) //! * [*§ 5.3 Lists* in `CommonMark`](https://spec.commonmark.org/0.30/#lists) //! -//! [document]: crate::content::document +//! [document]: crate::construct::document //! [html-li]: https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element //! [html-ol]: https://html.spec.whatwg.org/multipage/grouping-content.html#the-ol-element //! [html-ul]: https://html.spec.whatwg.org/multipage/grouping-content.html#the-ul-element |