From 74fa09f5d59e44b01e12fdcc9a99357b757289c4 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 27 May 2024 18:34:13 +0700 Subject: [PATCH] chore(clippy): Fix `doc_lazy_continuation` lint (#362) --- fluent-syntax/src/parser/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluent-syntax/src/parser/mod.rs b/fluent-syntax/src/parser/mod.rs index 713bd9bd..00230032 100644 --- a/fluent-syntax/src/parser/mod.rs +++ b/fluent-syntax/src/parser/mod.rs @@ -3,7 +3,7 @@ //! FTL resources can be parsed using one of two methods: //! * [`parse`] - parses an input into a complete Abstract Syntax Tree representation with all source information preserved. //! * [`parse_runtime`] - parses an input into a runtime optimized Abstract Syntax Tree -//! representation with comments stripped. +//! representation with comments stripped. //! //! # Example //!