chore: remove typos

This commit is contained in:
Florian Dehau 2019-02-03 22:27:58 +01:00
parent 22579b77cc
commit 0168442c22
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ can either choose from:
- [rustbox](https://github.com/gchp/rustbox)
- [crossterm](https://github.com/TimonPost/crossterm)
However, some features may only be available in one of the two.
However, some features may only be available in one of the three.
The library is based on the principle of immediate rendering with intermediate
buffers. This means that at each new frame you should build all widgets that are

View File

@ -11,7 +11,7 @@ pub enum Event<I> {
Tick,
}
/// An small event handler that wrap termion input and tick events. Each event
/// A small event handler that wrap termion input and tick events. Each event
/// type is handled in its own thread and returned to a common `Receiver`
pub struct Events {
rx: mpsc::Receiver<Event<Key>>,