From 38b1b538fe18e21fefcbe322f71a8eb28cfe7746 Mon Sep 17 00:00:00 2001 From: filipstrand Date: Thu, 27 Nov 2025 16:50:09 +0100 Subject: [PATCH] Fix trailing spaces after backslashes in shell examples Remove trailing spaces after backslashes in FIBO command examples. These caused shell line continuation to break when users copy-pasted the commands, resulting in 'command not found' errors. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c4b18e3..df454d6 100644 --- a/README.md +++ b/README.md @@ -1116,7 +1116,7 @@ mflux-generate-fibo \ --width 1200 \ --height 540 \ --steps 20 \ - --guidance 4.0 \ + --guidance 4.0 \ --seed 42 \ --output animal_bakers.png ``` @@ -1132,7 +1132,7 @@ mflux-generate-fibo \ --width 1200 \ --height 540 \ --steps 20 \ - --guidance 4.0 \ + --guidance 4.0 \ --seed 42 \ --output animal_bakers.png ```