From 7c690d3354a7c3b028b59a69178cd04d099dbe90 Mon Sep 17 00:00:00 2001 From: Delano Leslie <86261814+MyUsernamee@users.noreply.github.com> Date: Tue, 23 Jul 2024 14:15:16 -0700 Subject: [PATCH] Fix typo Changed "Text splitted to sentences" to "Text split into sentences" --- TTS/utils/synthesizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/utils/synthesizer.py b/TTS/utils/synthesizer.py index b98647c30c..8f60a864d0 100644 --- a/TTS/utils/synthesizer.py +++ b/TTS/utils/synthesizer.py @@ -294,7 +294,7 @@ def tts( if text: sens = [text] if split_sentences: - print(" > Text splitted to sentences.") + print(" > Text split into sentences.") sens = self.split_into_sentences(text) print(sens)