From c1021c71758d0c850c7b3fea26075bb83830cb7d Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 6 Jun 2023 15:59:56 +0200 Subject: Fix punctuation in `screenshot` example --- examples/screenshot/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/screenshot') diff --git a/examples/screenshot/src/main.rs b/examples/screenshot/src/main.rs index 0d77d316..0f1d8dce 100644 --- a/examples/screenshot/src/main.rs +++ b/examples/screenshot/src/main.rs @@ -183,12 +183,12 @@ impl Application for Example { } let png_button = if !self.png_saving { - button("Save to png.") + button("Save to png") .style(Button::Secondary) .padding([10, 20, 10, 20]) .on_press(Message::Png) } else { - button("Saving..") + button("Saving...") .style(Button::Secondary) .padding([10, 20, 10, 20]) }; -- cgit