From 9df000700a8ce068a7121d8aa76ea2244fa07f06 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Tue, 17 Jun 2025 17:40:43 -0700 Subject: [PATCH] steamosctl: Fix formatting on TriggerScreenReaderAction --- src/bin/steamosctl.rs | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/bin/steamosctl.rs b/src/bin/steamosctl.rs index 04b5054..9d374be 100644 --- a/src/bin/steamosctl.rs +++ b/src/bin/steamosctl.rs @@ -256,18 +256,17 @@ enum Commands { /// Trigger screen reader action TriggerScreenReaderAction { - /// Valid actions are: - /// stop_talking - /// read_next_word - /// read_previous_word - /// read_next_item - /// read_previous_item - /// move_to_next_landmark, - /// move_to_previous_landmark, - /// move_to_next_heading, - /// move_to_previous_heading, - /// toggle_mode, - /// + /// Valid actions are + /// `stop_talking`, + /// `read_next_word`, + /// `read_previous_word`, + /// `read_next_item`, + /// `read_previous_item`, + /// `move_to_next_landmark`, + /// `move_to_previous_landmark`, + /// `move_to_next_heading`, + /// `move_to_previous_heading`, + /// `toggle_mode` action: ScreenReaderAction, }, }