From 4c5275fec75a95e38a77f5fcfbca7c68043d178e Mon Sep 17 00:00:00 2001 From: Matt Wood Date: Wed, 10 Feb 2021 22:35:24 -0600 Subject: [PATCH] Fix typo in comment for react-devtools-shared (#20459) --- .../src/backend/views/Highlighter/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-devtools-shared/src/backend/views/Highlighter/index.js b/packages/react-devtools-shared/src/backend/views/Highlighter/index.js index 1278619c5b07d..1f3b8974b6578 100644 --- a/packages/react-devtools-shared/src/backend/views/Highlighter/index.js +++ b/packages/react-devtools-shared/src/backend/views/Highlighter/index.js @@ -15,7 +15,7 @@ import {hideOverlay, showOverlay} from './Highlighter'; import type {BackendBridge} from 'react-devtools-shared/src/bridge'; // This plug-in provides in-page highlighting of the selected element. -// It is used by the browser extension nad the standalone DevTools shell (when connected to a browser). +// It is used by the browser extension and the standalone DevTools shell (when connected to a browser). // It is not currently the mechanism used to highlight React Native views. // That is done by the React Native Inspector component.