From b7215da3bd62efb8999bd55a3a3268aaae5e933a Mon Sep 17 00:00:00 2001 From: Florian Gilcher Date: Thu, 14 Mar 2024 18:27:09 +0100 Subject: [PATCH] Fix typo in app: "arround -> around" --- advisory_viewer/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advisory_viewer/src/app.rs b/advisory_viewer/src/app.rs index 94c20c5..19f98c9 100644 --- a/advisory_viewer/src/app.rs +++ b/advisory_viewer/src/app.rs @@ -412,7 +412,7 @@ impl eframe::App for TemplateApp { .striped(true) .show(ui, |ui| { let hints = [ - ("Left-Click + Mousedrag", "move the plot arround"), + ("Left-Click + Mousedrag", "move the plot around"), ("Mousewheel", "move plot vertical"), ("Mousewheel + Shift", "move plot horizontally"), ("Mousehweel + Control", "zoom plot in/out"),