Skip to content

Commit 00ebe13

Browse files
committed
Minor doc fixes
1 parent 2ccca17 commit 00ebe13

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ import Foundation
2323
/// Facilitates communication with the backend for a ``LiveSession``.
2424
///
2525
/// Using an actor will make it easier to adopt session resumption, as we have an isolated place for
26-
/// mainting mutablity, which is backed
27-
/// by Swift concurrency implicity; allowing us to avoid various edge-case issues with dead-locks
28-
/// and data races.
26+
/// mainting mutablity, which is backed by Swift concurrency implicity; allowing us to avoid various
27+
/// edge-case issues with dead-locks and data races.
2928
///
3029
/// This mainly comes into play when we don't want to block developers from sending messages while a
3130
/// session is being reloaded.
@@ -59,7 +58,7 @@ actor LiveSessionService {
5958
/// Used to hold off on sending messages until the server is ready.
6059
private var setupTask: Task<Void, Error>
6160

62-
/// Long running task that that wraps around the websocket, propogating messages through the
61+
/// Long running task that that wraps around the websocket, propogating messages through the
6362
/// public stream.
6463
private var responsesTask: Task<Void, Never>?
6564

0 commit comments

Comments
 (0)