Fix typos in comments

Summary: Per title.

Reviewed By: mweststrate

Differential Revision: D25394444

fbshipit-source-id: b741a147e25df5d4e91094c71136179871123743
This commit is contained in:
Pascal Hartig
2020-12-08 08:29:46 -08:00
committed by Facebook GitHub Bot
parent 172cc82589
commit e33afdb938

View File

@@ -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);