Use literal blocks for console I/O to separate it from the
surrounding text. Otherwise the lines run together, without any
clear break before or after the commands.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Cc: Jean-François Lessard <jefflessard3@gmail.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Documentation/ABI/testing/sysfs-auxdisplay-linedisp | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
--- linux-next-20260918.orig/Documentation/ABI/testing/sysfs-auxdisplay-linedisp
+++ linux-next-20260918/Documentation/ABI/testing/sysfs-auxdisplay-linedisp
@@ -11,7 +11,8 @@ Description:
Writing an empty string clears the display.
- Example:
+ Example::
+
echo "Hello World" > message
cat message # Returns "Hello World\n"
@@ -23,7 +24,8 @@ Description:
Read-only attribute showing the character width capacity of
the line display device. Messages longer than this will scroll.
- Example:
+ Example::
+
cat num_chars # Returns "16\n" for 16-char display
What: /sys/.../scroll_step_ms
@@ -35,7 +37,8 @@ Description:
Setting to 0 disables scrolling. Default is 500ms.
- Example:
+ Example::
+
echo "250" > scroll_step_ms # 4Hz scrolling
cat scroll_step_ms # Returns "250\n"