From e33afdb9384f5dab7fed90015de5a48a6663cccf Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 8 Dec 2020 08:29:46 -0800 Subject: [PATCH] Fix typos in comments Summary: Per title. Reviewed By: mweststrate Differential Revision: D25394444 fbshipit-source-id: b741a147e25df5d4e91094c71136179871123743 --- desktop/plugins/hermesdebuggerrn/ChromeDevTools.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/plugins/hermesdebuggerrn/ChromeDevTools.tsx b/desktop/plugins/hermesdebuggerrn/ChromeDevTools.tsx index 45535e366..bf536a2bc 100644 --- a/desktop/plugins/hermesdebuggerrn/ChromeDevTools.tsx +++ b/desktop/plugins/hermesdebuggerrn/ChromeDevTools.tsx @@ -15,7 +15,7 @@ import electron from 'electron'; const devToolsNodeId = (url: string) => `hermes-chromedevtools-out-of-react-node-${url.replace(/\W+/g, '-')}`; -// TODO: build abstractionf or this: T62306732 +// TODO: build abstraction of this: T62306732 const TARGET_CONTAINER_ID = 'flipper-out-of-contents-container'; // should be a hook in the future function createDevToolsNode( @@ -40,7 +40,7 @@ function createDevToolsNode( iframe.style.height = '100%'; iframe.style.width = '100%'; - // // HACK: chrome-devtools:// is blocked by the sandbox but devtools:// isn't for some reason. + // HACK: chrome-devtools:// is blocked by the sandbox but devtools:// isn't for some reason. iframe.src = url.replace(/^chrome-/, ''); wrapper.appendChild(iframe);