Unnamed repository; edit this file 'description' to name the repository.
Fix typo in helix-tui text module docs (#13860)
| -rw-r--r-- | helix-tui/src/text.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-tui/src/text.rs b/helix-tui/src/text.rs index c4313e15..1317a009 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. |