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)