Skip to content

Commit 120d5a9

Browse files
Fix --verbose example in README: global flag goes before command
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent df21329 commit 120d5a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@ Shows: Python version, GPU availability, all dependency versions, and fix sugges
354354
Soup shows friendly error messages by default (2-3 lines with a fix suggestion). For full tracebacks:
355355

356356
```bash
357-
# Any command with --verbose
358-
soup train --config soup.yaml --verbose
357+
# Global flag goes BEFORE the command
358+
soup --verbose train --config soup.yaml
359359

360-
# Global flag works with all commands
360+
# Works with any command
361361
soup --verbose eval --model ./output --benchmarks mmlu
362362
```
363363

0 commit comments

Comments
 (0)