diff --git a/CHANGELOG.md b/CHANGELOG.md index e61d20e..7113989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Documentation + +Minor fix in root crate documentation + ## [1.2.0] - 2024-11-03 diff --git a/src/lib.rs b/src/lib.rs index c13e87b..fc3e630 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! //! The [`attr`] module contains functions to create common attributes. //! -//! Text can be inserted by using the [`elt::text`] function or by using one of the `Into` implementations.//! ``` +//! Text can be inserted by using the [`elt::text`] function or by using one of the `Into` implementations. //! All text and attribute values are automatically escaped to ensure safe and valid HTML output. //! //! ```