Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage authored and acdlite committed Nov 13, 2018
1 parent b545546 commit 6c22b6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-dom/src/server/ReactThreadIDAllocator.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ function growThreadCountAndReturnNextAvailable() {
newSize <= 0x10000,
'Maximum number of concurrent React renderers exceeded. ' +
'This can happen if you are not properly destroying the Readable provided by React. ' +
'Ensure that you call .destroy() on it if you no longer want to read from it.' +
', and did not read to the end. If you use .pipe() this should be automatic.',
'Ensure that you call .destroy() on it if you no longer want to read from it, ' +
'and did not read to the end. If you use .pipe() this should be automatic.',
);
let newArray = new Uint16Array(newSize);
newArray.set(oldArray);
Expand Down

0 comments on commit 6c22b6c

Please sign in to comment.