diff options
author | 2019-10-08 03:23:51 +0200 | |
---|---|---|
committer | 2019-10-08 03:23:51 +0200 | |
commit | e95e656fcd780264f7a3c9a2ba3d0bd471d4894e (patch) | |
tree | d7aac1bbb6b7cca0aef8e5faedf79747462fbb0c /examples/tour/src/tour.rs | |
parent | e82e96e6ad5a76faf5e09a6805d406af13e312c5 (diff) | |
download | iced-e95e656fcd780264f7a3c9a2ba3d0bd471d4894e.tar.gz iced-e95e656fcd780264f7a3c9a2ba3d0bd471d4894e.tar.bz2 iced-e95e656fcd780264f7a3c9a2ba3d0bd471d4894e.zip |
Fix missing "is" in tour
Diffstat (limited to 'examples/tour/src/tour.rs')
-rw-r--r-- | examples/tour/src/tour.rs | 4 |
1 files 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 \ |