Skip to content

Commit 25edb15

Browse files
authored
Fix typos (#15445)
1 parent f9754ba commit 25edb15

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

FirebaseAI/Sources/Types/Internal/Live/LiveSessionService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ actor LiveSessionService {
105105

106106
/// Start a new connection to the backend.
107107
///
108-
/// Seperated into its own function to make it easier to surface a way to call it seperately when
108+
/// Separated into its own function to make it easier to surface a way to call it separately when
109109
/// resuming the same session.
110110
///
111111
/// This function will yield until the websocket is ready to communicate with the client.

FirebaseAI/Sources/Types/Public/Live/LiveSession.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public final class LiveSession: Sendable {
7272
/// Instead of raw video data, the model expects individual frames of the video,
7373
/// sent as images.
7474
///
75-
/// If your video has audio, send it seperately through ``LiveSession/sendAudioRealtime(_:)``.
75+
/// If your video has audio, send it separately through ``LiveSession/sendAudioRealtime(_:)``.
7676
///
7777
/// For better performance, frames can also be sent at a lower rate than the video;
7878
/// even as low as 1 frame per second.

FirebaseAI/Tests/TestApp/Tests/Integration/LiveSessionTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ private extension LiveSession {
484484
/// }
485485
/// ```
486486
///
487-
/// Is the equivelent to manually doing:
487+
/// Is the equivalent to manually doing:
488488
/// ```swift
489489
/// for try await response in session.responses {
490490
/// if case let .content(content) = response.payload {

0 commit comments

Comments
 (0)