diff --git a/examples/block.rs b/examples/block.rs index 26d00da..d7c84f1 100644 --- a/examples/block.rs +++ b/examples/block.rs @@ -31,7 +31,7 @@ fn main() -> Result<(), Box> { // with at least a margin of 1 let size = f.size(); - // Surounding block + // Surrounding block let block = Block::default() .borders(Borders::ALL) .title("Main block with round corners") diff --git a/examples/list.rs b/examples/list.rs index ea36a40..086b1ba 100644 --- a/examples/list.rs +++ b/examples/list.rs @@ -106,7 +106,7 @@ fn main() -> Result<(), Box> { let events = Events::new(); - // Create a new app with some exapmle state + // Create a new app with some example state let mut app = App::new(); loop { @@ -171,7 +171,7 @@ fn main() -> Result<(), Box> { Style::default().add_modifier(Modifier::ITALIC), ), ]); - // The event gets it's own line + // The event gets its own line let log = Spans::from(vec![Span::raw(event)]); // Here several things happen: