From 4e1db9f8d7140e8a853036dc0143a2929c169f90 Mon Sep 17 00:00:00 2001
From: H William Welliver <william@welliver.org>
Date: Tue, 15 Dec 2020 12:52:34 -0500
Subject: [PATCH] Documentation: fix markup errors

---
 src/threads.c | 30 ++++++++++++++++++++----------
 1 file changed, 20 insertions(+), 10 deletions(-)

diff --git a/src/threads.c b/src/threads.c
index 4af3c92f48..390adc6ec1 100644
--- a/src/threads.c
+++ b/src/threads.c
@@ -2722,20 +2722,30 @@ static void f_mutex_key__sprintf(INT32 args)
  *!
  *! Typical wait operation:
  *! @ol
- *!  @item Take mutex lock
- *!  @item Read/write shared resource
- *!  @item Wait for the signal with the mutex lock in released state
- *!  @item Reacquire mutex lock
- *!  @item If needed, jump back to step 2 again
- *!  @item Release mutex lock
+ *!  @item 
+ *!	Take mutex lock
+ *!  @item 
+ *!	Read/write shared resource
+ *!  @item 
+ *!	Wait for the signal with the mutex lock in released state
+ *!  @item 
+ *!	Reacquire mutex lock
+ *!  @item 
+ *!	If needed, jump back to step 2 again
+ *!  @item 
+ *!	Release mutex lock
  *! @endol
  *!
  *! Typical signal operation:
  *! @ol
- *!  @item Take mutex lock
- *!  @item Read/write shared resource
- *!  @item Send signal
- *!  @item Release mutex lock
+ *!  @item 
+ *!	Take mutex lock
+ *!  @item 
+ *! 	Read/write shared resource
+ *!  @item 
+ *!	Send signal
+ *!  @item 
+ *!	Release mutex lock
  *! @endol
  *!
  *! @example
-- 
GitLab