From ef00a32756bc2eb8d791669542f1f1838f4f4e2e Mon Sep 17 00:00:00 2001 From: Jeremy Whiting Date: Sun, 29 Sep 2024 06:51:29 -0600 Subject: [PATCH] Fix typo in valid values in steamosctl for wifi debug modes. WifiDebugMode is either off or tracing, no more on value. --- src/bin/steamosctl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/steamosctl.rs b/src/bin/steamosctl.rs index a4cdef9..3796366 100644 --- a/src/bin/steamosctl.rs +++ b/src/bin/steamosctl.rs @@ -124,7 +124,7 @@ enum Commands { /// Set Wi-Fi debug mode, if possible SetWifiDebugMode { - /// Valid modes are `on`, `off` + /// Valid modes are `off` or `tracing` mode: WifiDebugMode, /// The size of the debug buffer, in bytes buffer: Option,