From e03f10018785a29893012b433f8e0f39c2ee9fc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Krmpoti=C4=87?= Date: Mon, 30 Jun 2025 16:11:53 +0200 Subject: [PATCH] Fix typo in helix-tui text module docs (#13860) --- helix-tui/src/text.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.