Skip to content

Commit 1978cd2

Browse files
committed
Reflow a comment
1 parent 7857415 commit 1978cd2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: lib/src/embedded/worker_dispatcher.dart

+5-5
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,11 @@ 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
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
150150
// done. See sass/dart-sass#2004.
151151
var category = fullBuffer[0];
152152
var packet = Uint8List.sublistView(fullBuffer, 2);

0 commit comments

Comments
 (0)