Skip to content

Commit 6c22b6c

Browse files
sebmarkbageacdlite
authored andcommitted
fix typo
1 parent b545546 commit 6c22b6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-dom/src/server/ReactThreadIDAllocator.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ function growThreadCountAndReturnNextAvailable() {
2929
newSize <= 0x10000,
3030
'Maximum number of concurrent React renderers exceeded. ' +
3131
'This can happen if you are not properly destroying the Readable provided by React. ' +
32-
'Ensure that you call .destroy() on it if you no longer want to read from it.' +
33-
', and did not read to the end. If you use .pipe() this should be automatic.',
32+
'Ensure that you call .destroy() on it if you no longer want to read from it, ' +
33+
'and did not read to the end. If you use .pipe() this should be automatic.',
3434
);
3535
let newArray = new Uint16Array(newSize);
3636
newArray.set(oldArray);

0 commit comments

Comments
 (0)