From 2b649cc8d9187b4da3645ca31e90888dbf2d1851 Mon Sep 17 00:00:00 2001 From: Alison Joseph Date: Fri, 21 Jan 2022 10:15:28 -0600 Subject: [PATCH] fix: typo (#2708) --- src/pages/developing/react-tutorial/step-4.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/developing/react-tutorial/step-4.mdx b/src/pages/developing/react-tutorial/step-4.mdx index 10bd197ca07..01e0ad8fff9 100644 --- a/src/pages/developing/react-tutorial/step-4.mdx +++ b/src/pages/developing/react-tutorial/step-4.mdx @@ -132,7 +132,7 @@ Import `_info.scss` in `app.scss` after all of the `carbon-component` imports. ``` Like our other components, `index.js` will serve as an entrypoint. Since -`Info.js` will export mutliple components, we'll use the `*` wildcard in the +`Info.js` will export multiple components, we'll use the `*` wildcard in the entrypoint export. ```javascript path=src/components/Info/index.js