From 25e14782e3315b08c0e23d19b7f82103887ba92c Mon Sep 17 00:00:00 2001 From: rustco Date: Thu, 1 Aug 2024 01:56:39 +0900 Subject: [PATCH] Fix some comments (#899) --- docs/know-problems.md | 2 +- src/style/types/colored.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/know-problems.md b/docs/know-problems.md index 826aaee..933310b 100644 --- a/docs/know-problems.md +++ b/docs/know-problems.md @@ -1,7 +1,7 @@ # Known Problems There are some problems I discovered during development. -And I don't think it has to do anything with crossterm but it has to do whit how terminals handle ANSI or WinApi. +And I don't think it has to do anything with crossterm but it has to do with how terminals handle ANSI or WinApi. ## WinAPI diff --git a/src/style/types/colored.rs b/src/style/types/colored.rs index 85f921b..c9feecd 100644 --- a/src/style/types/colored.rs +++ b/src/style/types/colored.rs @@ -19,7 +19,7 @@ pub enum Colored { /// A background color. BackgroundColor(Color), /// An underline color. - /// Imporant: doesnt work on windows 10 or lower. + /// Important: doesn't work on windows 10 or lower. UnderlineColor(Color), }