From acf8ada4c00105f933ea87ad425e83cdcd115ba0 Mon Sep 17 00:00:00 2001 From: Konstantin Popov Date: Mon, 20 Sep 2021 22:09:59 +0300 Subject: [PATCH] Fix typo in types.js (react-devtools-shared) (#22299) Fix typo: becuase -> because --- packages/react-devtools-shared/src/types.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-devtools-shared/src/types.js b/packages/react-devtools-shared/src/types.js index fbde156a5c..f8f334124e 100644 --- a/packages/react-devtools-shared/src/types.js +++ b/packages/react-devtools-shared/src/types.js @@ -79,7 +79,7 @@ export type ComponentFilter = export type HookName = string | null; // Map of hook source ("::") to name. -// Hook source is used instead of the hook itself becuase the latter is not stable between element inspections. +// Hook source is used instead of the hook itself because the latter is not stable between element inspections. // We use a Map rather than an Array because of nested hooks and traversal ordering. export type HookSourceLocationKey = string; export type HookNames = Map;