Skip to content

Commit 7abaa29

Browse files
committed
fix(kokoro-tts): drop backslash line-continuations in usage comment
The doxygen-style usage banner used trailing backslashes inside `//` comments, which gcc treats as line-continuations and converts the block into a single multi-line comment. With `-Werror=comment` enabled (CI 3rd-party / ubuntu-24-llguidance), this fails: tools/kokoro/tools/kokoro-tts.cpp:6:1: error: multi-line comment Drop the backslashes — they were shell-style continuations that have no meaning in C++ comments anyway. The usage line still reads fine as plain text.
1 parent 89f3c2e commit 7abaa29

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tools/kokoro/tools/kokoro-tts.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
// kokoro-tts.cpp — standalone CLI harness for the Kokoro fork inference path.
44
//
55
// Usage:
6-
// kokoro-tts \
7-
// --model <path-to-kokoro-v1.0.gguf> \
8-
// --voice <path-to-voices/af_sam.bin> \
9-
// --text "Hello world." \
10-
// --output <out.wav> \
6+
// kokoro-tts
7+
// --model <path-to-kokoro-v1.0.gguf>
8+
// --voice <path-to-voices/af_sam.bin>
9+
// --text "Hello world."
10+
// --output <out.wav>
1111
// [--speed 1.0]
1212
//
1313
// Exits 0 on a non-blank WAV being written; non-zero on any failure. Used

0 commit comments

Comments
 (0)