Skip to content

Commit eb8c29f

Browse files
authored
Minor Documentation Updates: Clarified Comments in Python and Go Files (#5641)
* Update ui.go Signed-off-by: fuder.eth <[email protected]> * Update backend.py Signed-off-by: fuder.eth <[email protected]> --------- Signed-off-by: fuder.eth <[email protected]>
1 parent 63116a2 commit eb8c29f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/python/coqui/backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def LoadModel(self, request, context):
6666

6767
def TTS(self, request, context):
6868
try:
69-
# if model is multilangual add language from request or env as fallback
69+
# if model is multilingual add language from request or env as fallback
7070
lang = request.language or COQUI_LANGUAGE
7171
if lang == "":
7272
lang = None

core/http/routes/ui.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func RegisterUIRoutes(app *fiber.App,
6969
var processingModels = NewModelOpCache()
7070

7171
// modelStatus returns the current status of the models being processed (installation or deletion)
72-
// it is called asynchonously from the UI
72+
// it is called asynchronously from the UI
7373
modelStatus := func() (map[string]string, map[string]string) {
7474
processingModelsData := processingModels.Map()
7575

0 commit comments

Comments
 (0)