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
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
You can’t perform that action at this time.
0 commit comments