Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage committed Nov 10, 2018
1 parent 961eb65 commit f8bfd58
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 f8bfd58

Please sign in to comment.