diff --git a/mobile/examples/phi-3/ios/LocalLLM/LocalLLM/ContentView.swift b/mobile/examples/phi-3/ios/LocalLLM/LocalLLM/ContentView.swift index e290365c1..0777e2ff5 100644 --- a/mobile/examples/phi-3/ios/LocalLLM/LocalLLM/ContentView.swift +++ b/mobile/examples/phi-3/ios/LocalLLM/LocalLLM/ContentView.swift @@ -14,7 +14,7 @@ struct ContentView: View { @State private var userInput: String = "" @State private var messages: [Message] = [] // Store chat messages locally @State private var isGenerating: Bool = false // Track token generation state - @State private var stats: String = "" // token genetation stats + @State private var stats: String = "" // token generation stats @State private var showAlert: Bool = false @State private var errorMessage: String = ""