Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage authored and n8schloss committed Jan 31, 2019
1 parent b55654a commit b0079a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-dom/src/server/ReactThreadIDAllocator.js
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 b0079a2

Please sign in to comment.