diff options
Diffstat (limited to 'examples/tour/src')
| -rw-r--r-- | examples/tour/src/main.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 3e3a8ad7..d46e40d1 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -285,7 +285,7 @@ impl<'a> Step {                      is_showing_icon, ..                  } = self                  { -                    *is_showing_icon = toggle +                    *is_showing_icon = toggle;                  }              }          }; @@ -482,7 +482,7 @@ impl<'a> Step {              column(                  Language::all()                      .iter() -                    .cloned() +                    .copied()                      .map(|language| {                          radio(                              language,  | 
