Skip to content

Commit 659e27e

Browse files
committed
Reflow a comment
1 parent cad7dfe commit 659e27e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/src/embedded/worker_dispatcher.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ class WorkerDispatcher {
142142
var fullBuffer = message as Uint8List;
143143

144144
// The first byte of messages from workers indicates whether the entire
145-
// compilation is finished (1) or if it encountered an error (2).
146-
// Sending this as part of the message buffer rather than a separate
147-
// message avoids a race condition where the host might send a new
148-
// compilation request with the same ID as one that just finished before
149-
// the [WorkerDispatcher] receives word that the worker with that ID is
150-
// done. See sass/dart-sass#2004.
145+
// compilation is finished (1) or if it encountered an error (2). Sending
146+
// this as part of the message buffer rather than a separate message
147+
// avoids a race condition where the host might send a new compilation
148+
// request with the same ID as one that just finished before the
149+
// [WorkerDispatcher] receives word that the worker with that ID is done.
150+
// See sass/dart-sass#2004.
151151
var category = fullBuffer[0];
152152
var packet = Uint8List.sublistView(fullBuffer, 2);
153153

0 commit comments

Comments
 (0)