From 3048b7aca0690691d25cb8409d543b2377e065e1 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 11 Aug 2022 15:54:13 +0200 Subject: Refactor to move `space_or_tab_eol` to own file --- src/construct/attention.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/construct/attention.rs') diff --git a/src/construct/attention.rs b/src/construct/attention.rs index 6f91370..e974fae 100644 --- a/src/construct/attention.rs +++ b/src/construct/attention.rs @@ -32,14 +32,14 @@ //! //! ## Tokens //! -//! * [`Emphasis`][Token::Emphasis] -//! * [`EmphasisSequence`][Token::EmphasisSequence] -//! * [`EmphasisText`][Token::EmphasisText] -//! * [`Strong`][Token::Strong] -//! * [`StrongSequence`][Token::StrongSequence] -//! * [`StrongText`][Token::StrongText] +//! * [`Emphasis`][Name::Emphasis] +//! * [`EmphasisSequence`][Name::EmphasisSequence] +//! * [`EmphasisText`][Name::EmphasisText] +//! * [`Strong`][Name::Strong] +//! * [`StrongSequence`][Name::StrongSequence] +//! * [`StrongText`][Name::StrongText] //! -//! > 👉 **Note**: while parsing, [`AttentionSequence`][Token::AttentionSequence] +//! > 👉 **Note**: while parsing, [`AttentionSequence`][Name::AttentionSequence] //! > is used, which is later compiled away. //! //! ## References -- cgit