From e95e656fcd780264f7a3c9a2ba3d0bd471d4894e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 8 Oct 2019 03:23:51 +0200 Subject: Fix missing "is" in tour --- examples/tour/src/tour.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tour/src/tour.rs b/examples/tour/src/tour.rs index 105ec271..60a251d2 100644 --- a/examples/tour/src/tour.rs +++ b/examples/tour/src/tour.rs @@ -282,8 +282,8 @@ impl<'a> Step { fn welcome() -> Column<'a, StepMessage> { Self::container("Welcome!") .push(Text::new( - "This a simple tour meant to showcase a bunch of widgets that \ - can be easily implemented on top of Iced.", + "This is a simple tour meant to showcase a bunch of widgets \ + that can be easily implemented on top of Iced.", )) .push(Text::new( "Iced is a renderer-agnostic GUI library for Rust focused on \ -- cgit