diff --git a/helix-tui/src/text.rs b/helix-tui/src/text.rs index c4313e15f..1317a0095 100644 --- a/helix-tui/src/text.rs +++ b/helix-tui/src/text.rs @@ -10,7 +10,7 @@ //! These types form a hierarchy: [`Spans`] is a collection of [`Span`] and each line of [`Text`] //! is a [`Spans`]. //! -//! Keep it mind that a lot of widgets will use those types to advertise what kind of string is +//! Keep in mind that a lot of widgets will use those types to advertise what kind of string is //! supported for their properties. Moreover, `tui` provides convenient `From` implementations so //! that you can start by using simple `String` or `&str` and then promote them to the previous //! primitives when you need additional styling capabilities.