From f31f53f61f4e79c7d9588fadfab38abd5a43f1a5 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Sat, 24 Dec 2016 13:52:49 -0800 Subject: [PATCH] fix random.1 man page Trailing whitespace on a `\fish` command was causing this build failure: /private/var/folders/T/fish_doc_build_3RT8yS/random.doxygen:44: warning: found tag without matching
---
 doc_src/random.txt | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/doc_src/random.txt b/doc_src/random.txt
index 84637df10..28f140152 100644
--- a/doc_src/random.txt
+++ b/doc_src/random.txt
@@ -30,12 +30,15 @@ statistically accurate.
 \subsection random-example Example
 
 The following code will count down from a random even number between 10 and 20 to 1:
+
 \fish
 for i in (seq (random 10 2 20) -1 1)
     echo $i
 end
 \endfish
+
 And this will open a random picture from any of the subdirectories:
-\fish 
+
+\fish
 open (random choice **jpg)
 \endfish