File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
FirebaseAI/Sources/Types/Internal/Live Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,8 @@ import Foundation
23
23
/// Facilitates communication with the backend for a ``LiveSession``.
24
24
///
25
25
/// 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.
29
28
///
30
29
/// This mainly comes into play when we don't want to block developers from sending messages while a
31
30
/// session is being reloaded.
@@ -59,7 +58,7 @@ actor LiveSessionService {
59
58
/// Used to hold off on sending messages until the server is ready.
60
59
private var setupTask : Task < Void , Error >
61
60
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
63
62
/// public stream.
64
63
private var responsesTask : Task < Void , Never > ?
65
64
You can’t perform that action at this time.
0 commit comments