Fix some comments (#899)

This commit is contained in:
rustco 2024-08-01 01:56:39 +09:00 committed by GitHub
parent 33b4e37223
commit 25e14782e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Known Problems # Known Problems
There are some problems I discovered during development. 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 ## WinAPI

View File

@ -19,7 +19,7 @@ pub enum Colored {
/// A background color. /// A background color.
BackgroundColor(Color), BackgroundColor(Color),
/// An underline color. /// An underline color.
/// Imporant: doesnt work on windows 10 or lower. /// Important: doesn't work on windows 10 or lower.
UnderlineColor(Color), UnderlineColor(Color),
} }