From f8bfd586806b8f7ac5fb5faa28f8c88411d333f0 Mon Sep 17 00:00:00 2001 From: Sebastian Markbage Date: Fri, 9 Nov 2018 16:16:25 -0800 Subject: [PATCH] fix typo --- packages/react-dom/src/server/ReactThreadIDAllocator.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-dom/src/server/ReactThreadIDAllocator.js b/packages/react-dom/src/server/ReactThreadIDAllocator.js index 1bba2dd50fca..48ada0044355 100644 --- a/packages/react-dom/src/server/ReactThreadIDAllocator.js +++ b/packages/react-dom/src/server/ReactThreadIDAllocator.js @@ -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);