From dcc6a8987ec7df8fced0f4df19588b71ef38b928 Mon Sep 17 00:00:00 2001 From: rk-helper <62377740+rk-helper@users.noreply.github.com> Date: Wed, 4 Dec 2024 23:40:56 +0400 Subject: [PATCH] Typo in Model Descriptions It should be "Downloaded" for .downloaded, not "Downloading" --- Sources/WhisperKit/Core/Models.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/WhisperKit/Core/Models.swift b/Sources/WhisperKit/Core/Models.swift index 325e062..e036fcd 100644 --- a/Sources/WhisperKit/Core/Models.swift +++ b/Sources/WhisperKit/Core/Models.swift @@ -127,7 +127,7 @@ public enum ModelState: CustomStringConvertible { case .downloading: return "Downloading" case .downloaded: - return "Downloading" + return "Downloaded" } } }