From 3ca62c7d364288f55e4ad33315f34f738eb0e261 Mon Sep 17 00:00:00 2001 From: Daniel Peukert Date: Fri, 2 Aug 2024 10:25:41 +0200 Subject: [PATCH] fix: typos in profile editor --- src/env_var_descriptions.rs | 2 +- src/ui/profile_editor.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/env_var_descriptions.rs b/src/env_var_descriptions.rs index 7d733ff..79b019b 100644 --- a/src/env_var_descriptions.rs +++ b/src/env_var_descriptions.rs @@ -41,7 +41,7 @@ fn env_var_descriptions() -> Vec<(&'static str, &'static str)> { ), ( "LH_DRIVER", - "Lighthouse driver, this overrides the \"Lighthouse driver option in the profile\"; Valid options are:\n\"vive\" for the default built-in driver;\n\"survive\" for Libsurvive;\n\"steamvr\" for the SteamVR based implementation." + "Lighthouse driver, this overrides the \"Lighthouse driver\" option in the profile; Valid options are:\n\"vive\" for the default built-in driver;\n\"survive\" for Libsurvive;\n\"steamvr\" for the SteamVR based implementation." ), ( "LH_LOG", diff --git a/src/ui/profile_editor.rs b/src/ui/profile_editor.rs index 8706aac..792d401 100644 --- a/src/ui/profile_editor.rs +++ b/src/ui/profile_editor.rs @@ -138,12 +138,12 @@ impl SimpleComponent for ProfileEditor { set_title: "XR Service", set_description: Some(concat!( "For launch options, you can insert %command% as ", - "a placeholder for the actual XR Service command,", + "a placeholder for the actual XR Service command, ", "similarly to how Steam launch options work.", )), add: &combo_row( "XR Service Type", - Some("Monado is for PCVR headsets, while WiVRn is for Andorid standalone headsets"), + Some("Monado is for PCVR headsets, while WiVRn is for Android standalone headsets"), model.profile.borrow().xrservice_type.to_string().as_str(), XRServiceType::iter() .map(XRServiceType::to_string)