From 200f5233fb0441b09fdfbb24a959ec2ddf993dea Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Thu, 12 Jan 2023 02:47:21 +1300 Subject: [PATCH] cargo clippy --- src/ui/settings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/settings.rs b/src/ui/settings.rs index 5c876540..8b4d2e3b 100644 --- a/src/ui/settings.rs +++ b/src/ui/settings.rs @@ -22,7 +22,7 @@ pub(super) fn update(app: &mut GossipUi, _ctx: &Context, _frame: &mut eframe::Fr ui.horizontal(|ui| { ui.label("Maximum total number of relays to query: ") .on_hover_text( - "We will not connect to more than this many relays. Takes affect on restart." + "We will not connect to more than this many relays. Takes affect on restart.", ); ui.add(Slider::new(&mut app.settings.max_relays, 1..=50).text("relays")); });