From e0485409fca79af0b47af15ebdba7a3df5c1d3d2 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 12 Oct 2022 10:44:33 +0200 Subject: Refactor to improve some module docs --- src/construct/mdx_esm.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/construct/mdx_esm.rs') diff --git a/src/construct/mdx_esm.rs b/src/construct/mdx_esm.rs index 4fb6b50..47e11a3 100644 --- a/src/construct/mdx_esm.rs +++ b/src/construct/mdx_esm.rs @@ -13,7 +13,7 @@ //! //! This construct must be followed by a blank line or eof (end of file). //! It can include blank lines if [`MdxEsmParse`][crate::MdxEsmParse] passed in -//! `options.mdx_esm_parse` allows it. +//! [`ParseOptions`][parse_options] allows it. //! //! ## Tokens //! @@ -27,6 +27,7 @@ //! * [`mdxjs.com`](https://mdxjs.com) //! //! [flow]: crate::construct::flow +//! [parse_options]: crate::ParseOptions use crate::event::Name; use crate::state::{Name as StateName, State}; -- cgit